summaryrefslogtreecommitdiff
path: root/src/settings_gui.cpp
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-02-18 13:19:57 +0000
committerpeter1138 <peter1138@openttd.org>2008-02-18 13:19:57 +0000
commitc05df5b0517018d0037b8ad6a2464384713b863a (patch)
tree3c619e7cc51c7d9ab2c77ac577c952983341e403 /src/settings_gui.cpp
parentd85484c63722e22c5d8f5a8ddfe5879d4b60a765 (diff)
downloadopenttd-c05df5b0517018d0037b8ad6a2464384713b863a.tar.xz
(svn r12175) -Fix (r12174): Ensure the patches window is centred properly.
Diffstat (limited to 'src/settings_gui.cpp')
-rw-r--r--src/settings_gui.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp
index 15b41b32c..34790acc0 100644
--- a/src/settings_gui.cpp
+++ b/src/settings_gui.cpp
@@ -892,6 +892,9 @@ static void PatchesSelectionWndProc(Window *w, WindowEvent *e)
/* Resize the window to fit the largest patch tab */
ResizeWindowForWidget(w, PATCHSEL_OPTIONSPANEL, 0, patches_max * 11);
+ /* Recentre the window for the new size */
+ w->top = w->top - (patches_max * 11) / 2;
+
w->LowerWidget(4);
} break;