small fix
Anselm R. Garbe arg@10kloc.org
Wed, 06 Sep 2006 10:03:21 +0200
M
view.c
→
view.c
@@ -41,7 +41,7 @@
static Client * nexttiled(Client *c) { - for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next)); + for(c = getnext(c); c && c->isfloat; c = getnext(c->next)); return c; }@@ -325,7 +325,7 @@ if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
return; if((c = sel) == nexttiled(clients)) - if(!(c = nexttiled(c))) + if(!(c = nexttiled(c->next))) return; detach(c); c->next = clients;