From 4aca2b876485fa011298c9d7c0fe5b296b2ed122 Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 12 Nov 2015 18:33:30 +0000 Subject: If a client sets hints, honor them for kb resize requests, just like we do for mouse based resize requests. Based on a patch from Vadim Vygonets. --- client.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'client.c') diff --git a/client.c b/client.c index 2a5bede..bb8f8dc 100644 --- a/client.c +++ b/client.c @@ -839,6 +839,8 @@ client_getsizehints(struct client_ctx *cc) } cc->hint.incw = MAX(1, cc->hint.incw); cc->hint.inch = MAX(1, cc->hint.inch); + cc->hint.minw = MAX(1, cc->hint.minw); + cc->hint.minh = MAX(1, cc->hint.minh); if (size.flags & PAspect) { if (size.min_aspect.x > 0) -- cgit 1.4.1