fix
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 18:43:15 +0200
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
view.c
→
view.c
@@ -318,7 +318,7 @@ if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
return; /* this is somewhat tricky, it asserts to only zoom tiled clients */ - for(c = clients; c && c->isfloat; c = getnext(c->next)); + for(c = getnext(clients); c && c->isfloat; c = getnext(c->next)); if(c) { if(c == sel) for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));