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 | 122ce21f32cd70a5b44e9238bb01ee95d0781f9a (patch) | |
tree | cac83bf872a19384e6ab8887bfe5c5bc5277b19a /src | |
parent | b29026864567b6a3842bd5b518ac989e5cd29d97 (diff) | |
download | openttd-122ce21f32cd70a5b44e9238bb01ee95d0781f9a.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.
Diffstat (limited to 'src')
-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); } } |