Commit 20faca5b authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Vitaly Lipatov

winex11.drv: Make window "Klass Dopuska" not managed. (eterbug #15122)

parent f49ff1ce
...@@ -278,6 +278,15 @@ static BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rec ...@@ -278,6 +278,15 @@ static BOOL is_window_managed( HWND hwnd, UINT swp_flags, const RECT *window_rec
return FALSE; return FALSE;
} }
/* Make "Klass Dopuska" not managed, eterbug #15122 */
if (!strncmp(buf, "HwndWrapper[DefaultDomain;;", 27) &&
(style == 0x06cf0000 || style == 0x060f0000 || style == 0x160f0000 || style == 0x16080000 || style == 0x06080000) &&
(ex_style == 0x00000100 || ex_style == 0))
{
TRACE("Klass Dopuska: %p => NOT managed\n", hwnd);
return FALSE;
}
/* child windows are not managed */ /* child windows are not managed */
if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD) return FALSE; if ((style & (WS_CHILD|WS_POPUP)) == WS_CHILD) return FALSE;
/* activated windows are managed */ /* activated windows are managed */
......
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