Mercurial > aewl
changeset 428:16f8f05f960e
fix
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Tue, 05 Sep 2006 18:43:15 +0200 |
parents | e58cd202c4e9 |
children | a31de8605f72 |
files | view.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/view.c Tue Sep 05 18:04:22 2006 +0200 +++ b/view.c Tue Sep 05 18:43:15 2006 +0200 @@ -318,7 +318,7 @@ 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));