summaryrefslogtreecommitdiff
path: root/src/osk_gui.cpp
diff options
context:
space:
mode:
authorPeter Nelson <peter1138@openttd.org>2021-04-05 18:43:12 +0100
committerPeterN <peter@fuzzle.org>2021-04-30 17:08:15 +0100
commit4791ff28627eabe6322352428dc1b42344f545b9 (patch)
tree4bd1a641a0f905f8ddc3a247fd5df73706d089f2 /src/osk_gui.cpp
parent6fe5353da2a0d3d60f8375b28536213e67cd869c (diff)
downloadopenttd-4791ff28627eabe6322352428dc1b42344f545b9.tar.xz
Fix: Recalculate padding and minimum sizes when GUI or Font zoom is changed.
Diffstat (limited to 'src/osk_gui.cpp')
-rw-r--r--src/osk_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osk_gui.cpp b/src/osk_gui.cpp
index 233bb1c7a..119f26eae 100644
--- a/src/osk_gui.cpp
+++ b/src/osk_gui.cpp
@@ -237,7 +237,7 @@ static void AddKey(NWidgetHorizontal *hor, int height, int num_half, WidgetType
hor->Add(spc);
}
NWidgetLeaf *leaf = new NWidgetLeaf(widtype, COLOUR_GREY, widnum, widdata, STR_NULL);
- leaf->SetMinimalSize(ScaleGUITrad(key_width), height);
+ leaf->SetMinimalSizeAbsolute(ScaleGUITrad(key_width), height);
hor->Add(leaf);
}