This commit is contained in:
Anselm R. Garbe 2006-09-05 18:43:15 +02:00
parent e1315fd40c
commit 838a1ff950
1 changed files with 1 additions and 1 deletions

2
view.c
View File

@ -318,7 +318,7 @@ zoom(Arg *arg)
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));