1
0
mirror of git://git.suckless.org/dwm synced 2025-01-05 22:40:41 +00:00

applied Connors and Valentins patch to improve the unmapnotify handling of broken clients

This commit is contained in:
garbeam@gmail.com 2011-08-08 16:55:06 +00:00
parent 0de4197cc5
commit dec4850d05

8
dwm.c
View File

@ -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