fix if n < nmaster of remainer calculation for master windows

This commit is contained in:
Anselm R. Garbe 2007-05-24 16:25:09 +02:00
parent 02d5dddc00
commit f3e672efd8
1 changed files with 1 additions and 1 deletions

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