Merge branch 'master' of https://github.com/kronikpillow/dwm into kronikpillow-master

This commit is contained in:
Luke Smith 2020-02-02 21:12:21 -05:00
commit a2ae4a88ad
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

6
dwm.c
View file

@ -1369,12 +1369,12 @@ propertynotify(XEvent *e)
Window trans; Window trans;
XPropertyEvent *ev = &e->xproperty; XPropertyEvent *ev = &e->xproperty;
if ((ev->window == root) && (ev->atom == XA_WM_NAME)) if ((ev->window == root) && (ev->atom == XA_WM_NAME)) {
if (!fake_signal()) if (!fake_signal())
updatestatus(); updatestatus();
else if (ev->state == PropertyDelete) } else if (ev->state == PropertyDelete) {
return; /* ignore */ return; /* ignore */
else if ((c = wintoclient(ev->window))) { } else if ((c = wintoclient(ev->window))) {
switch(ev->atom) { switch(ev->atom) {
default: break; default: break;
case XA_WM_TRANSIENT_FOR: case XA_WM_TRANSIENT_FOR: