Add gaps to gapless-grid (properly)
This adjusts both the x and y of each client now.
This commit is contained in:
@@ -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);
|
||||
cx = (m->wx + cn*cw);
|
||||
cy = (m->wy + rn*ch);
|
||||
resize(c, cx, cy, cw - 2 * c->bw, ch - 2 * c->bw, False);
|
||||
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 + m->gappx, cw - 2 * c->bw - m->gappx, ch - 2 * c->bw - m->gappx, False);
|
||||
rn++;
|
||||
if(rn >= rows) {
|
||||
rn = 0;
|
||||
|
||||
Reference in New Issue
Block a user