applied Connors and Valentins patch to improve the unmapnotify handling of broken clients
This commit is contained in:
parent
0de4197cc5
commit
dec4850d05
1 changed files with 6 additions and 2 deletions
8
dwm.c
8
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
|
||||
|
|
Loading…
Reference in a new issue