(svn r7414) -Fix: Immediately invalidate the resize widget when clicked, instead of when started to drag

This commit is contained in:
Darkvater 2006-12-07 12:57:53 +00:00
parent dc6eca9e16
commit 5b9f884cd0
1 changed files with 1 additions and 0 deletions

View File

@ -132,6 +132,7 @@ static void DispatchLeftClickEvent(Window *w, int x, int y)
if (w->desc_flags & WDF_RESIZABLE && wi->type == WWT_RESIZEBOX) {
StartWindowSizing(w);
InvalidateWidget(w, e.we.click.widget);
return;
}