Browse Source

fix if n < nmaster of remainer calculation for master windows

master
Anselm R. Garbe 17 years ago
parent
commit
f3e672efd8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      layout.c

+ 1
- 1
layout.c View File

@ -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;
}


Loading…
Cancel
Save