diff options
-rw-r--r-- | gaplessgrid.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gaplessgrid.c b/gaplessgrid.c index 5b9de89..09d9ac8 100644 --- a/gaplessgrid.c +++ b/gaplessgrid.c @@ -22,10 +22,10 @@ gaplessgrid(Monitor *m) { for(i = 0, c = nexttiled(m->clients); c; i++, c = nexttiled(c->next)) { if(i/rows + 1 > cols - n%cols) rows = n/cols + 1; - ch = (rows ? m->wh / rows : m->wh) - m->gappx; - cx = (m->wx + cn*cw) + m->gappx; - cy = (m->wy + rn*ch) + m->gappx; - resize(c, cx + m->gappx, cy, cw - 2 * c->bw - m->gappx, ch - 2 * c->bw, False); + ch = (rows ? m->wh / rows : m->wh); + cx = (m->wx + cn*cw); + cy = (m->wy + rn*ch); + resize(c, cx, cy, cw - 2 * c->bw, ch - 2 * c->bw, False); rn++; if(rn >= rows) { rn = 0; |