--- wine/dlls/x11drv/window.c.orig 2005-04-26 05:16:17.000000000 -0300 +++ wine/dlls/x11drv/window.c 2005-05-09 15:46:40.784335349 -0300 @@ -134,13 +134,7 @@ inline static BOOL is_window_managed( HW /* application windows are managed */ if (ex_style & WS_EX_APPWINDOW) return TRUE; /* full-screen popup windows are managed */ - if (style & WS_POPUP) - { - RECT rect; - GetWindowRect( hwnd, &rect ); - if ((rect.right - rect.left) == screen_width && (rect.bottom - rect.top) == screen_height) - return TRUE; - } + if (style & WS_POPUP) return TRUE; /* default: not managed */ return FALSE; }