Commit 4e6fab53 authored by Jerry Jenkins's avatar Jerry Jenkins Committed by Alexandre Julliard

Fix managed state of some windows.

parent eb4d6e07
......@@ -127,6 +127,10 @@ inline static BOOL is_window_managed( WND *win )
if (win->dwExStyle & WS_EX_TOOLWINDOW) return FALSE;
/* windows with thick frame are managed */
if (win->dwStyle & WS_THICKFRAME) return TRUE;
/* application windows are managed */
if (win->dwExStyle & WS_EX_APPWINDOW) return TRUE;
/* popup windows that aren't owned are managed */
if ((win->dwStyle & WS_POPUP) && !win->owner) return TRUE;
/* default: not managed */
return FALSE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment