fix
This commit is contained in:
parent
e1315fd40c
commit
838a1ff950
2
view.c
2
view.c
@ -318,7 +318,7 @@ zoom(Arg *arg)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* this is somewhat tricky, it asserts to only zoom tiled clients */
|
/* 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) {
|
||||||
if(c == sel)
|
if(c == sel)
|
||||||
for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));
|
for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next));
|
||||||
|
Loading…
Reference in New Issue
Block a user