X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=layout.c;h=5d43187d6af7e3e879573d50841158f9f504b7ec;hb=5711609203602bd01b4b131572142bb171ffc560;hp=21ee99c3febfefb59e22456f8231c9564e5c93e3;hpb=825b7c3eb17fd0a79005110bf28e92c4ed2f1a90;p=dwm.git diff --git a/layout.c b/layout.c index 21ee99c..5d43187 100644 --- a/layout.c +++ b/layout.c @@ -120,11 +120,17 @@ incmasterw(const char *arg) { void incnmaster(const char *arg) { - int i = arg ? atoi(arg) : 0; - if((lt->arrange != tile) || (nmaster + i < 1) - || (wah / (nmaster + i) <= 2 * BORDERPX)) - return; - nmaster += i; + int i; + + if(!arg) + nmaster = NMASTER; + else { + i = atoi(arg); + if((lt->arrange != tile) || (nmaster + i < 1) + || (wah / (nmaster + i) <= 2 * BORDERPX)) + return; + nmaster += i; + } if(sel) lt->arrange(); else @@ -175,7 +181,7 @@ restack(void) { void setlayout(const char *arg) { - unsigned int i; + int i; if(!arg) { for(i = 0; i < nlayouts && lt != &layout[i]; i++);