diff options
author | maedhros <maedhros@openttd.org> | 2007-03-26 08:55:45 +0000 |
---|---|---|
committer | maedhros <maedhros@openttd.org> | 2007-03-26 08:55:45 +0000 |
commit | d2bd12d52e296e1cbeed8b52060ddb0e1e19afec (patch) | |
tree | 7f2f76e07519113779e2662ce0ce40faedc5a369 | |
parent | 2afcd1561aea2f14d2be7a0bf6573fc067a6e9ac (diff) | |
download | openttd-d2bd12d52e296e1cbeed8b52060ddb0e1e19afec.tar.xz |
(svn r9474) -Fix (r8378): Expand the details widget in the vehicle build windows again to make room for all the text.
-rw-r--r-- | src/build_vehicle_gui.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/build_vehicle_gui.cpp b/src/build_vehicle_gui.cpp index 1ebccc83e..b576d4d63 100644 --- a/src/build_vehicle_gui.cpp +++ b/src/build_vehicle_gui.cpp @@ -51,11 +51,11 @@ static const Widget _build_vehicle_widgets[] = { { WWT_TEXTBTN, RESIZE_LR, 14, 216, 227, 14, 25, STR_0225, STR_SORT_CRITERIA_TIP}, { WWT_MATRIX, RESIZE_RB, 14, 0, 215, 26, 121, 0x0, STR_NULL }, { WWT_SCROLLBAR, RESIZE_LRB, 14, 216, 227, 26, 121, 0x0, STR_0190_SCROLL_BAR_SCROLLS_LIST }, - { WWT_PANEL, RESIZE_RTB, 14, 0, 227, 122, 223, 0x0, STR_NULL }, + { WWT_PANEL, RESIZE_RTB, 14, 0, 227, 122, 243, 0x0, STR_NULL }, - { WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 114, 224, 235, 0x0, STR_NULL }, - { WWT_PUSHTXTBTN, RESIZE_RTB, 14, 115, 215, 224, 235, 0x0, STR_NULL }, - { WWT_RESIZEBOX, RESIZE_LRTB, 14, 216, 227, 224, 235, 0x0, STR_RESIZE_BUTTON }, + { WWT_PUSHTXTBTN, RESIZE_TB, 14, 0, 114, 244, 255, 0x0, STR_NULL }, + { WWT_PUSHTXTBTN, RESIZE_RTB, 14, 115, 215, 244, 255, 0x0, STR_NULL }, + { WWT_RESIZEBOX, RESIZE_LRTB, 14, 216, 227, 244, 255, 0x0, STR_RESIZE_BUTTON }, { WIDGETS_END}, }; @@ -941,7 +941,7 @@ static void NewVehicleWndProc(Window *w, WindowEvent *e) } static const WindowDesc _build_vehicle_desc = { - WDP_AUTO, WDP_AUTO, 228, 236, + WDP_AUTO, WDP_AUTO, 228, 256, WC_BUILD_VEHICLE, WC_NONE, WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_RESIZABLE, _build_vehicle_widgets, |