x/y from XSizeHints are obsolete (and have been for a long time), so

instead use x/y from XWindowAttributes when USPosition|PPosition are
set.
This commit is contained in:
okan 2013-11-01 21:54:20 +00:00
parent 06eb13dfd9
commit b8f53666bd

View File

@ -695,10 +695,8 @@ client_placecalc(struct client_ctx *cc)
*/
xslack = sc->view.w - cc->geom.w - cc->bwidth * 2;
yslack = sc->view.h - cc->geom.h - cc->bwidth * 2;
if (cc->size->x > 0)
cc->geom.x = MIN(cc->size->x, xslack);
if (cc->size->y > 0)
cc->geom.y = MIN(cc->size->y, yslack);
cc->geom.x = MIN(cc->geom.x, xslack);
cc->geom.y = MIN(cc->geom.y, yslack);
} else {
struct geom xine;
int xmouse, ymouse;