diff options
author | rubidium <rubidium@openttd.org> | 2007-07-25 11:27:30 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-25 11:27:30 +0000 |
commit | 368e04520df2192f23309a39802d4a1eee48aad6 (patch) | |
tree | cac83bf872a19384e6ab8887bfe5c5bc5277b19a | |
parent | 7fe3635cdbdda719d25cfc56f74e8916fd0ba1da (diff) | |
download | openttd-368e04520df2192f23309a39802d4a1eee48aad6.tar.xz |
(svn r10685) -Fix [FS#1076]: graphical glitches when the "link landscape toolbar" patch is turned on when opening one of the construction toolbars.
-rw-r--r-- | src/terraform_gui.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index 4bd990674..75c46b68b 100644 --- a/src/terraform_gui.cpp +++ b/src/terraform_gui.cpp @@ -295,5 +295,7 @@ void ShowTerraformToolbar(Window *link) */ w->top = 22; link->left = w->left - link->width; + + SetWindowDirty(link); } } |