commit 5ba1740c0ed411f9055d9caae59501ce81f260be
Author: leszek <leszek@koltunski.pl>
Date:   Wed Mar 20 12:08:48 2024 +0100

    Lint

diff --git a/src/main/java/org/distorted/bandaged/BandagedWorkerThread.java b/src/main/java/org/distorted/bandaged/BandagedWorkerThread.java
index 825dbbee..1021d9c9 100644
--- a/src/main/java/org/distorted/bandaged/BandagedWorkerThread.java
+++ b/src/main/java/org/distorted/bandaged/BandagedWorkerThread.java
@@ -245,12 +245,7 @@ class BandagedWorkerThread extends Thread
       android.util.Log.e("D", "buffer encroaches on the bottom! centerX="+centerX+" centerY="+centerY+" size="+size);
       sB = 2*(height-centerY);
       }
-/*
-    if( sL==size && sR==size && sT==size && sB==size )
-      {
-      android.util.Log.e("D", "EVERYTHING ALL RIGHT centerX="+centerX+" centerY="+centerY+" size="+size);
-      }
-*/
+
     int minH = Math.min(sL,sR);
     int minV = Math.min(sT,sB);
     mCreatedBufSize = Math.min(minH,minV);
diff --git a/src/main/res/layout/dialog_updates_pane.xml b/src/main/res/layout/dialog_updates_pane.xml
index a93d269d..bba813e7 100644
--- a/src/main/res/layout/dialog_updates_pane.xml
+++ b/src/main/res/layout/dialog_updates_pane.xml
@@ -5,7 +5,8 @@
 	android:layout_height="wrap_content"
 	android:background="@color/medium_grey"
 	android:padding="8dp"
-	android:orientation="horizontal">
+	android:orientation="horizontal"
+	android:baselineAligned="false">
 
     <LinearLayout
    		android:layout_width="0dp"
diff --git a/src/main/res/layout/main.xml b/src/main/res/layout/main.xml
index 8fd21246..ab71e90c 100644
--- a/src/main/res/layout/main.xml
+++ b/src/main/res/layout/main.xml
@@ -24,7 +24,8 @@
         android:gravity="center"
         android:weightSum="1.0"
         android:orientation="horizontal"
-        android:background="@color/dark_grey">
+        android:background="@color/dark_grey"
+        android:baselineAligned="false">
 
         <LinearLayout
             android:layout_width="0dp"
diff --git a/src/main/res/layout/old_main.xml b/src/main/res/layout/old_main.xml
deleted file mode 100644
index acc9e572..00000000
--- a/src/main/res/layout/old_main.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@+id/relativeLayout"
-    android:layout_width="match_parent"
-    android:layout_height="match_parent" >
-
-    <org.distorted.main_old.RubikSurfaceView
-        android:id="@+id/rubikSurfaceView"
-        android:layout_width="match_parent"
-        android:layout_height="match_parent"
-        android:layout_alignParentStart="true"
-        android:layout_alignParentTop="true"/>
-
-    <LinearLayout
-        android:id="@+id/hiddenBar"
-        android:layout_alignParentTop="true"
-        android:layout_width="match_parent"
-        android:layout_height="0dp"
-        android:gravity="center"
-        android:orientation="horizontal"
-        android:background="@android:color/transparent">
-    </LinearLayout>
-
-    <LinearLayout
-        android:id="@+id/upperBar"
-        android:layout_below="@id/hiddenBar"
-        android:layout_width="match_parent"
-        android:layout_height="0dp"
-        android:gravity="center"
-        android:orientation="horizontal"
-        android:background="@android:color/transparent">
-    </LinearLayout>
-
-    <LinearLayout
-        android:id="@+id/lowerBar"
-        android:layout_alignParentBottom="true"
-        android:layout_width="match_parent"
-        android:layout_height="0dp"
-        android:orientation="horizontal"
-        android:background="@android:color/transparent">
-    </LinearLayout>
-
-</RelativeLayout>
