diff options
author | Yexo <yexo@openttd.org> | 2009-01-24 10:28:41 +0000 |
---|---|---|
committer | Yexo <yexo@openttd.org> | 2009-01-24 10:28:41 +0000 |
commit | 60dc54b2345320e44b98f6d7762655828b4cd9af (patch) | |
tree | 93a49fc27626147be81600fe37775ee7913296c6 | |
parent | 8278fc2149ac1aaa9cc4fa4a1aeaf97d0914a8c9 (diff) | |
download | openttd-60dc54b2345320e44b98f6d7762655828b4cd9af.tar.xz |
(svn r15250) -Fix (r15126): The NewGRF Settings window was 1 pixel to low.
-rw-r--r-- | src/newgrf_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp index f27883769..e41de64d1 100644 --- a/src/newgrf_gui.cpp +++ b/src/newgrf_gui.cpp @@ -754,7 +754,7 @@ static const Widget _newgrf_widgets[] = { /* Window definition of the manage newgrfs window */ static const WindowDesc _newgrf_desc = { - WDP_CENTER, WDP_CENTER, 300, 262, 300, 262, + WDP_CENTER, WDP_CENTER, 300, 263, 300, 263, WC_GAME_OPTIONS, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE, _newgrf_widgets, |