This is an automated email from the git hooks/post-receive script.

olivier pushed a 
commit to branch 
master
in repository xfce/xfwm4.

commit 22fe30cdd99d111f043b3282a02f39df468c7ac2
Author: Olivier Fourdan <four...@xfce.org>
Date:   Wed May 15 22:15:14 2019 +0200

    netwm: Fix window type for broken clients
    
    Bug: 15399
    
    If a client specifies an invalid NET_WM_WINDOW_TYPE, fallback to normal
    window type.
    
    Signed-off-by: Olivier Fourdan <four...@xfce.org>
---
 src/netwm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/netwm.c b/src/netwm.c
index 3c0121f..59567d3 100644
--- a/src/netwm.c
+++ b/src/netwm.c
@@ -1346,7 +1346,7 @@ clientWindowType (Client * c)
     else
     {
         TRACE ("no \"net\" atom detected");
-        c->type = UNSET;
+        c->type = WINDOW_NORMAL;
         c->initial_layer = c->win_layer;
     }
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to