diff -r 467c754b607d layout.c --- a/layout.c Mon May 28 15:05:47 2007 +0200 +++ b/layout.c Mon May 28 16:25:12 2007 +0200 @@ -77,7 +77,7 @@ floating(void) { floating(void) { Client *c; - for(c = clients; c; c = c->next) { + for(c = clients; c; c = c->next) if(isvisible(c)) { if(c->isbanned) XMoveWindow(dpy, c->win, c->x, c->y); @@ -88,7 +88,6 @@ floating(void) { c->isbanned = True; XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); } - } if(!sel || !isvisible(sel)) focustopvisible(); restack();