Alexandre Julliard : winex11: Make WS_EX_APPWINDOW windows have normal type .

Alexandre Julliard julliard at winehq.org
Mon Apr 14 07:14:24 CDT 2008


Module: wine
Branch: master
Commit: 9bf9c0b7ec6d4475962e6c739ca2f83a7a11fda7
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9bf9c0b7ec6d4475962e6c739ca2f83a7a11fda7

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Apr 14 13:27:19 2008 +0200

winex11: Make WS_EX_APPWINDOW windows have normal type.

---

 dlls/winex11.drv/window.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c
index 7cbd102..a1477c0 100644
--- a/dlls/winex11.drv/window.c
+++ b/dlls/winex11.drv/window.c
@@ -857,13 +857,14 @@ void X11DRV_set_wm_hints( Display *display, struct x11drv_win_data *data )
     set_size_hints( display, data, style );
 
     /* set the WM_WINDOW_TYPE */
-    window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
     if (style & WS_THICKFRAME) window_type = x11drv_atom(_NET_WM_WINDOW_TYPE_NORMAL);
+    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);
 #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),
 		    XA_ATOM, 32, PropModeReplace, (unsigned char*)&window_type, 1);




More information about the wine-cvs mailing list