fix
authorAnselm R. Garbe <arg@10kloc.org>
Tue, 05 Sep 2006 18:43:15 +0200
changeset 428 16f8f05f960e
parent 427 e58cd202c4e9
child 429 a31de8605f72
fix
view.c
--- 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));