From: Rémi Bernon rbernon@codeweavers.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=59010 --- dlls/win32u/window.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/win32u/window.c b/dlls/win32u/window.c index 8724175ac0c..4c52bc21f2a 100644 --- a/dlls/win32u/window.c +++ b/dlls/win32u/window.c @@ -4246,6 +4246,7 @@ static BOOL can_activate_window( HWND hwnd ) style = get_window_long( hwnd, GWL_STYLE ); if (!(style & WS_VISIBLE)) return FALSE; if ((style & (WS_POPUP|WS_CHILD)) == WS_CHILD) return FALSE; + if (style & WS_MINIMIZE) return FALSE; return !(style & WS_DISABLED); }