Revert "Fix bottom gapp in stac"

This reverts commit a0d0d123a7.
This commit is contained in:
pgrondek 2020-08-08 19:47:11 +02:00
parent e00820b5fe
commit 8026f9f03b

2
dwm.c
View file

@ -2004,7 +2004,7 @@ col(Monitor *m) {
x += WIDTH(c) + m->gappx;
}
else {
h = (m->wh - y) / (n - i) - m->gappx;
h = (m->wh - y) / (n - i);
resize(c, x + m->wx + m->gappx, m->wy + y, m->ww - x - (2*c->bw) - (2*m->gappx), h - (2*c->bw), False);
y += HEIGHT(c) + m->gappx;
}