Remove redundant minimum client size adjustment (minw and minh are

always positive since r1.214); from Vadim Vygonets.
This commit is contained in:
okan 2016-09-01 18:34:04 +00:00
parent 8c1b05e534
commit 4cf9a34b65

View File

@ -898,9 +898,6 @@ client_applysizehints(struct client_ctx *cc)
if (cc->hint.maxh)
cc->geom.h = MIN(cc->geom.h, cc->hint.maxh);
cc->geom.w = MAX(cc->geom.w, 1);
cc->geom.h = MAX(cc->geom.h, 1);
cc->dim.w = (cc->geom.w - cc->hint.basew) / cc->hint.incw;
cc->dim.h = (cc->geom.h - cc->hint.baseh) / cc->hint.inch;
}