From 6229ed20c2af107305eccb8b536afd8620443647 Mon Sep 17 00:00:00 2001 From: Anselm R Garbe Date: Sat, 5 Apr 2008 19:04:53 +0100 Subject: [PATCH] fix --- dwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 1.7.10.4