X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=layout.c;h=8005894321cd2a7e941b69a3e2687fc82c11e174;hb=f9e7a330190259a54449837a16c2af66fa823d30;hp=6eae290fbef7eb05890774013c13dc0a989dce6f;hpb=7c9fa2566f5b3bd1c9745086ff624967415c2c4e;p=dwm.git diff --git a/layout.c b/layout.c index 6eae290..8005894 100644 --- a/layout.c +++ b/layout.c @@ -46,7 +46,10 @@ tile(void) { nw = tw - 2 * c->border; if(th > 2 * c->border) { ny += (i - nmaster) * th; - nh = th - 2 * c->border; + if(i == n - 1) + nh = wah - ny - 2 * c->border; + else + nh = th - 2 * c->border; } else /* fallback if th <= 2 * c->border */ nh = wah - 2 * c->border;