JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fix if n < nmaster of remainer calculation for master windows
authorAnselm R. Garbe <arg@suckless.org>
Thu, 24 May 2007 14:25:09 +0000 (16:25 +0200)
committerAnselm R. Garbe <arg@suckless.org>
Thu, 24 May 2007 14:25:09 +0000 (16:25 +0200)
layout.c

index 0865050..4b4e908 100644 (file)
--- a/layout.c
+++ b/layout.c
@@ -40,7 +40,7 @@ tile(void) {
                                ny += i * mh;
                                nw = mw - 2 * c->border;
                                nh = mh;
-                               if(i + 1 == nmaster) /* remainder */
+                               if(i + 1 == (n < nmaster ? n : nmaster)) /* remainder */
                                        nh = wah - mh * i;
                                nh -= 2 * c->border;
                        }