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 7db7cc1b41
commit 0aaaf77e6b

View File

@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* $OpenBSD: client.c,v 1.214 2015/11/12 18:33:30 okan Exp $
* $OpenBSD: client.c,v 1.215 2016/09/01 18:34:04 okan Exp $
*/
#include <sys/types.h>
@ -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;
}