summaryrefslogtreecommitdiff
path: root/window.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-12-01 00:09:13 +0000
committerDarkvater <darkvater@openttd.org>2006-12-01 00:09:13 +0000
commit04f99447469d335af52702aad35cc2d3f705c06d (patch)
tree34e228c15bbd169f5c13601b61aa43ae9e3b95ba /window.c
parent9b4d3ff4b88eb6d655bf31afc28a6afa849f07f7 (diff)
downloadopenttd-04f99447469d335af52702aad35cc2d3f705c06d.tar.xz
(svn r7313) -Codechange: Calling invalidate data on a window will surely warrant a redraw, so call
that after the WE_INVALIDATE_DATA event and remove (some of) the superflouous calls.
Diffstat (limited to 'window.c')
-rw-r--r--window.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/window.c b/window.c
index bfe2bba1b..58de0affa 100644
--- a/window.c
+++ b/window.c
@@ -1767,6 +1767,7 @@ void InvalidateWindowClasses(WindowClass cls)
void InvalidateThisWindowData(Window *w)
{
CallWindowEventNP(w, WE_INVALIDATE_DATA);
+ SetWindowDirty(w);
}
void InvalidateWindowData(WindowClass cls, WindowNumber number)