diff options
Diffstat (limited to 'layout.c')
-rw-r--r-- | layout.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/layout.c b/layout.c index f3f8e26..0706c62 100644 --- a/layout.c +++ b/layout.c @@ -88,9 +88,7 @@ floating(void) { for(c = clients; c; c = c->next) if(isvisible(c)) { - if(c->isbanned) - XMoveWindow(dpy, c->win, c->x, c->y); - c->isbanned = False; + unban(c); resize(c, c->x, c->y, c->w, c->h, True); } else |