diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-02-02 21:13:04 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-02-02 21:13:04 -0500 |
commit | f414662e1d9e25e97d012bf395be648dcaa72581 (patch) | |
tree | b20dd76c64cec2bce501c7223acac0f74bf2c368 | |
parent | fe46d3ea5dec85c88cf9b57478ed363f0d9d810f (diff) | |
parent | a2ae4a88add179fc42ccb61c0269ce68a804214e (diff) |
Merge branch 'kronikpillow-master'
-rw-r--r-- | dwm.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1369,12 +1369,12 @@ propertynotify(XEvent *e) Window trans; 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()) updatestatus(); - else if (ev->state == PropertyDelete) + } else if (ev->state == PropertyDelete) { return; /* ignore */ - else if ((c = wintoclient(ev->window))) { + } else if ((c = wintoclient(ev->window))) { switch(ev->atom) { default: break; case XA_WM_TRANSIENT_FOR: |