summaryrefslogtreecommitdiff
path: root/src/town_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2016-05-22 10:52:02 +0000
committerfrosch <frosch@openttd.org>2016-05-22 10:52:02 +0000
commit8084f39bf332b14f4cb1424068849474e1b59cf9 (patch)
tree49cb14291e2a01425a2537bb506bb47726a62f19 /src/town_gui.cpp
parent4fc43b510d128b9d9f05f7c43222c0153f33ae12 (diff)
downloadopenttd-8084f39bf332b14f4cb1424068849474e1b59cf9.tar.xz
(svn r27577) -Fix [FS#6386]: Dock and roadstop picker, client list and town authority window did not auto-resize according to their content when they were positioned at the bottom of the screen. (Eearslya)
Diffstat (limited to 'src/town_gui.cpp')
-rw-r--r--src/town_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 222549ff7..142966b69 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -177,7 +177,7 @@ public:
y = y + WD_FRAMERECT_BOTTOM - nwid->pos_y; // Compute needed size of the widget.
if (y > nwid->current_y) {
/* If the company list is too big to fit, mark ourself dirty and draw again. */
- ResizeWindow(this, 0, y - nwid->current_y);
+ ResizeWindow(this, 0, y - nwid->current_y, false);
}
}