diff options
| -rw-r--r-- | monsterwm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/monsterwm.c b/monsterwm.c index 78aecb8..b044514 100644 --- a/monsterwm.c +++ b/monsterwm.c @@ -818,8 +818,7 @@ void tile(void) { * client, so no invisible windows exist on screen */ void unmapnotify(XEvent *e) { client *c = wintoclient(e->xunmap.window); - if (c && e->xunmap.send_event) removeclient(c); - desktopinfo(); + if (c && e->xunmap.send_event) { removeclient(c); desktopinfo(); } } /* highlight borders and set active window and input focus |
