(svn r7414) -Fix: Immediately invalidate the resize widget when clicked, instead of when started to drag
authorDarkvater
Thu, 07 Dec 2006 12:57:53 +0000
changeset 5272 a9de3792b481
parent 5271 a2e9e1dd7cb2
child 5273 d9f707aa36a6
(svn r7414) -Fix: Immediately invalidate the resize widget when clicked, instead of when started to drag
window.c
--- a/window.c	Thu Dec 07 04:12:29 2006 +0000
+++ b/window.c	Thu Dec 07 12:57:53 2006 +0000
@@ -132,6 +132,7 @@
 
 		if (w->desc_flags & WDF_RESIZABLE && wi->type == WWT_RESIZEBOX) {
 			StartWindowSizing(w);
+			InvalidateWidget(w, e.we.click.widget);
 			return;
 		}