JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
lt->arrange in mfact
authorAnselm R Garbe <garbeam@gmail.com>
Sat, 31 May 2008 16:05:28 +0000 (17:05 +0100)
committerAnselm R Garbe <garbeam@gmail.com>
Sat, 31 May 2008 16:05:28 +0000 (17:05 +0100)
dwm.c

diff --git a/dwm.c b/dwm.c
index 0dfb94e..4a826d9 100644 (file)
--- a/dwm.c
+++ b/dwm.c
@@ -1306,7 +1306,7 @@ void
 setmfact(const void *arg) {
        double d = *((double*) arg);
 
-       if(!d || lt->arrange != tile)
+       if(!d || lt->arrange)
                return;
        d = d < 1.0 ? d + mfact : d - 1.0;
        if(d < 0.1 || d > 0.9)