Alexandre Julliard : user32: Properly update position after dragging an iconic window.

Alexandre Julliard julliard at winehq.org
Mon Jul 7 09:19:45 CDT 2008


Module: wine
Branch: master
Commit: 2734fb44e0f4065179044b9eb93f87a7630f292d
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2734fb44e0f4065179044b9eb93f87a7630f292d

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Jul  7 15:51:30 2008 +0200

user32: Properly update position after dragging an iconic window.

---

 dlls/user32/winpos.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c
index a64c621..acfd481 100644
--- a/dlls/user32/winpos.c
+++ b/dlls/user32/winpos.c
@@ -2591,7 +2591,7 @@ void WINPOS_SysCommandSizeMove( HWND hwnd, WPARAM wParam )
         if (!((msg.message == WM_KEYDOWN) && (msg.wParam == VK_ESCAPE)) )
         {
             /* NOTE: SWP_NOACTIVATE prevents document window activation in Word 6 */
-            if(!DragFullWindows)
+            if(!DragFullWindows || iconic)
                 SetWindowPos( hwnd, 0, sizingRect.left, sizingRect.top,
                               sizingRect.right - sizingRect.left,
                               sizingRect.bottom - sizingRect.top,




More information about the wine-cvs mailing list