commit 956e110f6f987e40dd578d268191e9ab4d01f585
Author: leszek <leszek@koltunski.pl>
Date:   Tue Mar 19 22:36:56 2024 +0100

    beginnings of support for barrel-shaped objects.

diff --git a/src/main/res/layout/config.xml b/src/main/res/layout/config.xml
index 3761c20c..6aca6f14 100644
--- a/src/main/res/layout/config.xml
+++ b/src/main/res/layout/config.xml
@@ -35,8 +35,9 @@
 
             <TextView
                 android:id="@+id/configTextBorder"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
+                android:layout_width="0dp"
+                android:layout_height="match_parent"
+                android:layout_weight="1"
                 android:gravity="center_vertical|start"
                 android:textSize="26sp"
                 android:text="@string/config_border"/>
@@ -44,8 +45,9 @@
             <SeekBar
                 android:id="@+id/configSeekBarBorder"
                 style="@style/Widget.AppCompat.SeekBar.Discrete"
-                android:layout_width="119dp"
+                android:layout_width="0dp"
                 android:layout_height="match_parent"
+                android:layout_weight="1"
                 android:gravity="center_vertical|end"
                 android:max="4"
                 android:progress="2" />
@@ -61,8 +63,9 @@
 
             <TextView
                 android:id="@+id/configTextCorner"
-                android:layout_width="wrap_content"
-                android:layout_height="wrap_content"
+                android:layout_width="0dp"
+                android:layout_height="match_parent"
+                android:layout_weight="1"
                 android:gravity="center_vertical|start"
                 android:textSize="26sp"
                 android:text="@string/config_corner"/>
@@ -70,8 +73,9 @@
             <SeekBar
                 android:id="@+id/configSeekBarCorner"
                 style="@style/Widget.AppCompat.SeekBar.Discrete"
-                android:layout_width="119dp"
+                android:layout_width="0dp"
                 android:layout_height="match_parent"
+                android:layout_weight="1"
                 android:gravity="center_vertical|end"
                 android:max="4"
                 android:progress="2" />
