winex11.drv: Do not set window type to utility to avoid a Metacity bug.

This commit is contained in:
Dmitry Timoshkov 2008-04-07 22:17:47 +09:00 committed by Alexandre Julliard
parent 0fdd381f26
commit 1bf824e0b0
1 changed files with 2 additions and 0 deletions

View File

@ -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);