summaryrefslogtreecommitdiff
path: root/src/airport_gui.cpp
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-01-28 10:09:40 +0000
committertron <tron@openttd.org>2007-01-28 10:09:40 +0000
commit508dc154df8d845d84a2ed24ff801fc760cfe577 (patch)
tree11b4deb3cc72ca5ee663ed421d3b106ebd62c35a /src/airport_gui.cpp
parentb6186cf39cb558df6422fd530c1f7fd7120d5bfb (diff)
downloadopenttd-508dc154df8d845d84a2ed24ff801fc760cfe577.tar.xz
(svn r8436) -Fix
-Feature: When linking the terraform toolbar to the build toolbars place them side by side instead of on top of each other
Diffstat (limited to 'src/airport_gui.cpp')
-rw-r--r--src/airport_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport_gui.cpp b/src/airport_gui.cpp
index be9a8223c..bebb62183 100644
--- a/src/airport_gui.cpp
+++ b/src/airport_gui.cpp
@@ -135,8 +135,8 @@ void ShowBuildAirToolbar(void)
if (!IsValidPlayer(_current_player)) return;
DeleteWindowById(WC_BUILD_TOOLBAR, 0);
- AllocateWindowDescFront(&_air_toolbar_desc, 0);
- if (_patches.link_terraform_toolbar) ShowTerraformToolbar();
+ Window *w = AllocateWindowDescFront(&_air_toolbar_desc, 0);
+ if (_patches.link_terraform_toolbar) ShowTerraformToolbar(w);
}
static void BuildAirportPickerWndProc(Window *w, WindowEvent *e)