diff options
author | tron <tron@openttd.org> | 2007-01-28 10:09:40 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2007-01-28 10:09:40 +0000 |
commit | 5052c6609d64c61b00ae862b67f01cdce2adbd1d (patch) | |
tree | 11b4deb3cc72ca5ee663ed421d3b106ebd62c35a /src/dock_gui.cpp | |
parent | 737ca7b7f5786f94c5ff5f805dde163429c2d09e (diff) | |
download | openttd-5052c6609d64c61b00ae862b67f01cdce2adbd1d.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/dock_gui.cpp')
-rw-r--r-- | src/dock_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dock_gui.cpp b/src/dock_gui.cpp index 1997a5a3d..9930b89ae 100644 --- a/src/dock_gui.cpp +++ b/src/dock_gui.cpp @@ -219,8 +219,8 @@ void ShowBuildDocksToolbar(void) if (!IsValidPlayer(_current_player)) return; DeleteWindowById(WC_BUILD_TOOLBAR, 0); - AllocateWindowDesc(&_build_docks_toolbar_desc); - if (_patches.link_terraform_toolbar) ShowTerraformToolbar(); + Window *w = AllocateWindowDesc(&_build_docks_toolbar_desc); + if (_patches.link_terraform_toolbar) ShowTerraformToolbar(w); } static void BuildDockStationWndProc(Window *w, WindowEvent *e) |