From 0b6a6e4137dc481aa0001f8c5370ea1961b42a19 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Thu, 21 Dec 2006 11:34:50 +0000 Subject: [PATCH] (svn r7525) -Fix (r6631): Invalidate the widget of 'many random industries' when it is raised (Maedhros) --- main_gui.c | 1 + 1 file changed, 1 insertion(+) diff --git a/main_gui.c b/main_gui.c index 774df16a99..845295035a 100644 --- a/main_gui.c +++ b/main_gui.c @@ -1657,6 +1657,7 @@ static void ScenEditIndustryWndProc(Window *w, WindowEvent *e) break; case WE_TIMEOUT: RaiseWindowWidget(w, 3); + InvalidateWidget(w, 3); break; } }