Module: wine Branch: master Commit: 1bf824e0b00d2b179d5f34dd0c7ace83e83bd28a URL: http://source.winehq.org/git/wine.git/?a=commit;h=1bf824e0b00d2b179d5f34dd0c...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Mon Apr 7 22:17:47 2008 +0900
winex11.drv: Do not set window type to utility to avoid a Metacity bug.
---
dlls/winex11.drv/window.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 919879a..09ef8de 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -947,7 +947,9 @@ void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data ) if (style & WS_THICKFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL); else if (style & WS_DLGFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG); else if (ex_style & WS_EX_DLGMODALFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_DIALOG); +#if 0 /* many window managers don't handle utility windows very well */ else if (ex_style & WS_EX_TOOLWINDOW) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_UTILITY); +#endif
XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_WINDOW_TYPE), XA_ATOM, 32, PropModeReplace, (unsigned char*)&window_type, 1);