projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1315fd
)
fix
author
Anselm R. Garbe
<arg@10kloc.org>
Tue, 5 Sep 2006 16:43:15 +0000
(18:43 +0200)
committer
Anselm R. Garbe
<arg@10kloc.org>
Tue, 5 Sep 2006 16:43:15 +0000
(18:43 +0200)
view.c
patch
|
blob
|
history
diff --git
a/view.c
b/view.c
index b76b47e8103a97d3b1e90dd4b545aaec6fe19de6..561d4ef060ae3b9f8d2b87eccdc0fd677e8aaf42 100644
(file)
--- 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));