From b54d7f15ac476df7ed50162d265e22d0ab07ef72 Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Mon, 8 May 2023 08:48:35 +0100 Subject: [PATCH] Change: Reduce size of waypoint matrix to 3 x 2. --- src/rail_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp index 07d915221c..e2582b1cbb 100644 --- a/src/rail_gui.cpp +++ b/src/rail_gui.cpp @@ -2022,9 +2022,9 @@ struct BuildRailWaypointWindow : PickerWindowBase { { switch (widget) { case WID_BRW_WAYPOINT_MATRIX: - /* Three blobs high and wide. */ + /* Two blobs high and three wide. */ size->width += resize->width * 2; - size->height += resize->height * 2; + size->height += resize->height * 1; /* Resizing in X direction only at blob size, but at pixel level in Y. */ resize->height = 1;