this makes sure the issue mentioned by sander
Anselm R. Garbe arg@10kloc.org
Tue, 05 Sep 2006 18:04:22 +0200
1 files changed,
8 insertions(+),
2 deletions(-)
jump to
M
view.c
→
view.c
@@ -317,8 +317,14 @@ n++;
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized) return; - if((c = sel) == getnext(clients)) - for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next)); + /* this is somewhat tricky, it asserts to only zoom tiled clients */ + for(c = 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)); + else + c = sel; + } if(!c) return; detach(c);