1
0
Fork 0

Change: Reduce size of waypoint matrix to 3 x 2.

pull/10782/head
Peter Nelson 2023-05-08 08:48:35 +01:00 committed by Michael Lutz
parent 0513a6ccb0
commit b54d7f15ac
1 changed files with 2 additions and 2 deletions

View File

@ -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;