JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
applied Connors and Valentins patch to improve the unmapnotify handling of broken...
authorgarbeam@gmail.com <unknown>
Mon, 8 Aug 2011 16:55:06 +0000 (16:55 +0000)
committergarbeam@gmail.com <unknown>
Mon, 8 Aug 2011 16:55:06 +0000 (16:55 +0000)
dwm.c

diff --git a/dwm.c b/dwm.c
index db0fdfb..6909969 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -1761,8 +1761,12 @@ unmapnotify(XEvent *e) {
        Client *c;
        XUnmapEvent *ev = &e->xunmap;
 
-       if((c = wintoclient(ev->window)))
-               unmanage(c, False);
+       if((c = wintoclient(ev->window))) {
+               if(ev->send_event)
+                       setclientstate(c, WithdrawnState);
+               else
+                       unmanage(c, False);
+       }
 }
 
 void