aboutsummarylogtreecommitdiffstats
path: root/layout.c
diff options
context:
space:
mode:
authorAnselm R. Garbe2007-02-22 12:15:48 +0100
committerAnselm R. Garbe2007-02-22 12:15:48 +0100
commit39bb02da872c97284e297b1ddff4698c0b42e35a (patch)
tree29cd8ecbfe0ac3ff6305b7eadcec00c0c223a38f /layout.c
parent20d49244d80bd4809c183356dfecd61b2b74da53 (diff)
downloadaur-39bb02da872c97284e297b1ddff4698c0b42e35a.tar.gz
small bugfix
Diffstat (limited to 'layout.c')
-rw-r--r--layout.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/layout.c b/layout.c
index 21ee99c3febf..5d43187d6af7 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++);