diff --git a/src/calng/scenes.py b/src/calng/scenes.py
index 592faaac43bc25cc1b67de22aa40f12710f95300..01a97467908c839f81b36fff7aa1d6ba35079497 100644
--- a/src/calng/scenes.py
+++ b/src/calng/scenes.py
@@ -869,19 +869,14 @@ class RelativeGeometrySettings(VerticalLayout):
                 ),
                 HorizontalLayout(
                     LabelModel(
-                        text="Module offsets", width=4 * BASE_INC, height=BASE_INC
+                        text="Module offsets", width=6 * BASE_INC, height=BASE_INC
                     ),
                     LabelModel(text="x", width=4 * BASE_INC, height=BASE_INC),
                     LabelModel(text="y", width=4 * BASE_INC, height=BASE_INC),
                     LabelModel(text="z", width=4 * BASE_INC, height=BASE_INC),
-                    DoubleLineEditModel(
-                        keys=[f"{device_id}.manualSetting.gap"],
-                        width=4 * BASE_INC,
-                        height=BASE_INC,
-                    ),
                 ),
                 HorizontalLayout(
-                    LabelModel(text="Top", width=4 * BASE_INC, height=BASE_INC),
+                    LabelModel(text="Top", width=6 * BASE_INC, height=BASE_INC),
                     DoubleLineEditModel(
                         keys=[f"{device_id}.manualSetting.topOffset.x"],
                         width=4 * BASE_INC,
@@ -899,7 +894,7 @@ class RelativeGeometrySettings(VerticalLayout):
                     ),
                 ),
                 HorizontalLayout(
-                    LabelModel(text="Bottom", width=4 * BASE_INC, height=BASE_INC),
+                    LabelModel(text="Bottom", width=6 * BASE_INC, height=BASE_INC),
                     DoubleLineEditModel(
                         keys=[f"{device_id}.manualSetting.bottomOffset.x"],
                         width=4 * BASE_INC,
@@ -916,7 +911,11 @@ class RelativeGeometrySettings(VerticalLayout):
                         height=BASE_INC,
                     ),
                 ),
-                DisplayCommandModel(keys=[f"{device_id}.manualSetting.setManual"]),
+                DisplayCommandModel(
+                    keys=[f"{device_id}.manualSetting.setManual"],
+                    width=6 * BASE_INC,
+                    height=BASE_INC,
+                ),
             ]
         )