winex11: Make the tool window flag take precedence when setting the window type.

This prevents some menus from being marked as dialogs.
oldstable
Alexandre Julliard 2010-12-28 11:49:37 +01:00
parent a13078eebd
commit 66814d0dd6
1 changed files with 2 additions and 3 deletions

View File

@ -1198,10 +1198,9 @@ static void set_wm_hints( Display *display, struct x11drv_win_data *data )
else if (style & WS_MINIMIZEBOX) 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);
/* many window managers don't handle utility windows very well, so we don't use TYPE_UTILITY here */
else if (ex_style & WS_EX_TOOLWINDOW) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
else if ((style & WS_POPUP) && owner) 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
else window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
XChangeProperty(display, data->whole_window, x11drv_atom(_NET_WM_WINDOW_TYPE),