[PATCH v3 8/9] user32: Allow clicking the restore and maximize boxes for on minimized windows.

Zebediah Figura z.figura12 at gmail.com
Tue Feb 19 12:17:43 CST 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/user32/nonclient.c | 1 -
 dlls/user32/winpos.c    | 5 -----
 2 files changed, 6 deletions(-)

diff --git a/dlls/user32/nonclient.c b/dlls/user32/nonclient.c
index 0e15e954fa..372b1be707 100644
--- a/dlls/user32/nonclient.c
+++ b/dlls/user32/nonclient.c
@@ -473,7 +473,6 @@ LRESULT NC_HandleNCHitTest( HWND hwnd, POINT pt )
 
     style = GetWindowLongW( hwnd, GWL_STYLE );
     ex_style = GetWindowLongW( hwnd, GWL_EXSTYLE );
-    if (style & WS_MINIMIZE) return HTCAPTION;
 
     if (PtInRect( &rcClient, pt )) return HTCLIENT;
 
diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c
index 4a28a6fbab..acd748f13c 100644
--- a/dlls/user32/winpos.c
+++ b/dlls/user32/winpos.c
@@ -305,11 +305,6 @@ HWND WINPOS_WindowFromPoint( HWND hwndScope, POINT pt, INT *hittest )
         LONG style = GetWindowLongW( list[i], GWL_STYLE );
 
         /* If window is minimized or disabled, return at once */
-        if (style & WS_MINIMIZE)
-        {
-            *hittest = HTCAPTION;
-            break;
-        }
         if (style & WS_DISABLED)
         {
             *hittest = HTERROR;
-- 
2.20.1




More information about the wine-devel mailing list