about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/view.c b/view.c
index b76b47e..561d4ef 100644
--- a/view.c
+++ b/view.c
@@ -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));
artik K. Agaram <vc@akkartik.com> 2015-04-20 16:42:35 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-04-20 16:42:35 -0700 1113' href='/akkartik/mu/commit/cpp/console.mu?h=main&id=f08a13e1f709c69375202e8ecafb337a24abed45'>f08a13e1 ^
0012c703 ^







ec961781 ^
54d48b25 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24