don't compensate for bwidth twice.

ok oga@
This commit is contained in:
okan 2008-07-15 13:52:02 +00:00
parent 6d268bfa4a
commit 96f03c8cbc

View File

@ -682,7 +682,7 @@ client_placecalc(struct client_ctx *cc)
cc->geom.x -= Conf.gap_right;
} else {
cc->geom.x = cc->bwidth + Conf.gap_left;
cc->geom.width = sc->xmax - cc->bwidth - Conf.gap_left;
cc->geom.width = sc->xmax - Conf.gap_left;
}
if (yslack >= 0) {
cc->geom.y = MAX(MIN(ymouse, yslack),
@ -691,7 +691,7 @@ client_placecalc(struct client_ctx *cc)
cc->geom.y -= Conf.gap_bottom;
} else {
cc->geom.y = cc->bwidth + Conf.gap_top;
cc->geom.height = sc->ymax - cc->bwidth - Conf.gap_top;
cc->geom.height = sc->ymax - Conf.gap_top;
}
}
}