diff options
author | peter1138 <peter1138@openttd.org> | 2009-11-17 10:04:21 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2009-11-17 10:04:21 +0000 |
commit | 5fdff78c4290e0fd3bfcd552e76bb11f4cb9b312 (patch) | |
tree | f365a57e61a8d313574462cd616330b9a347bfa5 /src | |
parent | bdb118aa69131d401850ad6209da8ffd748531b4 (diff) | |
download | openttd-5fdff78c4290e0fd3bfcd552e76bb11f4cb9b312.tar.xz |
(svn r18135) -Codechange: File list text overflowed its container.
Diffstat (limited to 'src')
-rw-r--r-- | src/misc_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc_gui.cpp b/src/misc_gui.cpp index 11ef35b5c..7b32704b5 100644 --- a/src/misc_gui.cpp +++ b/src/misc_gui.cpp @@ -1877,7 +1877,7 @@ public: case SLWW_DRIVES_DIRECTORIES_LIST: resize->height = FONT_HEIGHT_NORMAL; - size->height = resize->height * 10; + size->height = resize->height * 10 + WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM; break; } } |