this makes sure the issue mentioned by sander
This commit is contained in:
parent
52a3ab1042
commit
e1315fd40c
1 changed files with 8 additions and 2 deletions
10
view.c
10
view.c
|
@ -317,8 +317,14 @@ zoom(Arg *arg)
|
||||||
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
|
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if((c = sel) == getnext(clients))
|
/* this is somewhat tricky, it asserts to only zoom tiled clients */
|
||||||
for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));
|
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)
|
if(!c)
|
||||||
return;
|
return;
|
||||||
detach(c);
|
detach(c);
|
||||||
|
|
Loading…
Reference in a new issue