about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-04-05 19:04:53 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-04-05 19:04:53 +0100
commit6229ed20c2af107305eccb8b536afd8620443647 (patch)
tree8eb065f2e18836e2d693cdf12fc1e662fb5881a3 /dwm.c
parent940240e5e6f16b292b2f6f37a05282617ce10fe9 (diff)
downloaddwm-6229ed20c2af107305eccb8b536afd8620443647.tar.gz
fix
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index e1d3b0a..ef241a3 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1068,7 +1068,7 @@ monocle(void) {
 	Client *c;
 
 	for(c = clients; c; c = c->next)
-		if((lt->isfloating || !c->floating) &&  isvisible(c))
+		if((lt->isfloating || !c->isfloating) &&  isvisible(c))
 			resize(c, mox, moy, mow - 2 * c->bw, moh - 2 * c->bw, RESIZEHINTS);
 }