diff options
author | alberth <alberth@openttd.org> | 2012-11-25 15:31:45 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2012-11-25 15:31:45 +0000 |
commit | a2b07adf4395b13197af61a81be109463ee4c10f (patch) | |
tree | d02fbc9c2cab2e13aa8f5ff35f9c75543e1f5151 /src | |
parent | fb892f4b2060344b1ca1dbcb9b120aa628fc4785 (diff) | |
download | openttd-a2b07adf4395b13197af61a81be109463ee4c10f.tar.xz |
(svn r24764) -Change: Disable horizontal resizing of the industry chain window, it's not useful.
Diffstat (limited to 'src')
-rw-r--r-- | src/industry_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_gui.cpp b/src/industry_gui.cpp index 507ee81de..2b65d0c5c 100644 --- a/src/industry_gui.cpp +++ b/src/industry_gui.cpp @@ -1409,7 +1409,7 @@ static const NWidgetPart _nested_industry_cargoes_widgets[] = { NWidget(NWID_HORIZONTAL), NWidget(WWT_TEXTBTN, COLOUR_BROWN, WID_IC_NOTIFY), SetDataTip(STR_INDUSTRY_CARGOES_NOTIFY_SMALLMAP, STR_INDUSTRY_CARGOES_NOTIFY_SMALLMAP_TOOLTIP), - NWidget(WWT_PANEL, COLOUR_BROWN), SetFill(1, 0), SetResize(1, 0), EndContainer(), + NWidget(WWT_PANEL, COLOUR_BROWN), SetFill(1, 0), SetResize(0, 0), EndContainer(), NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_IC_IND_DROPDOWN), SetFill(0, 0), SetResize(0, 0), SetDataTip(STR_INDUSTRY_CARGOES_SELECT_INDUSTRY, STR_INDUSTRY_CARGOES_SELECT_INDUSTRY_TOOLTIP), NWidget(WWT_DROPDOWN, COLOUR_BROWN, WID_IC_CARGO_DROPDOWN), SetFill(0, 0), SetResize(0, 0), |