From 122ce21f32cd70a5b44e9238bb01ee95d0781f9a Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 25 Jul 2007 11:27:30 +0000 Subject: [PATCH] (svn r10685) -Fix [FS#1076]: graphical glitches when the "link landscape toolbar" patch is turned on when opening one of the construction toolbars. --- src/terraform_gui.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index 4bd9906743..75c46b68bf 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); } }