diff options
| author | Luke Smith <[email protected]> | 2020-02-02 21:12:21 -0500 |
|---|---|---|
| committer | Luke Smith <[email protected]> | 2020-02-02 21:12:21 -0500 |
| commit | a2ae4a88add179fc42ccb61c0269ce68a804214e (patch) | |
| tree | b20dd76c64cec2bce501c7223acac0f74bf2c368 | |
| parent | config.def.h removed (diff) | |
| parent | fixed titlebar not being updated - issue #16 (diff) | |
| download | seiwm-a2ae4a88add179fc42ccb61c0269ce68a804214e.tar.xz seiwm-a2ae4a88add179fc42ccb61c0269ce68a804214e.zip | |
Merge branch 'master' of https://github.com/kronikpillow/dwm into 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: |