JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix
authorAnselm R Garbe <garbeam@gmail.com>
Sat, 5 Apr 2008 18:04:53 +0000 (19:04 +0100)
committerAnselm R Garbe <garbeam@gmail.com>
Sat, 5 Apr 2008 18:04:53 +0000 (19:04 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index e1d3b0a..ef241a3 100644 (file)
--- 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);
 }