winex11: Set type to dialog for owned popup windows.

This commit is contained in:
Alexandre Julliard 2008-04-21 20:33:18 +02:00
parent 9727aa8123
commit 0bbadeb69b
1 changed files with 1 additions and 0 deletions

View File

@ -883,6 +883,7 @@ void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data )
else if (ex_style & WS_EX_APPWINDOW) 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);
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