diff options
author | okan | 2015-11-12 18:33:30 +0000 |
---|---|---|
committer | okan | 2015-11-12 18:33:30 +0000 |
commit | fbe1f956e5e6aadb5e7dfb2e6dd760d444ea2fe1 (patch) | |
tree | 63138e65f5bc80b90ba21fc8c013c8e867a2757b /client.c | |
parent | 1cebeb1917e2f144081c3dea62073ffe65a6e5d8 (diff) | |
download | cwm-fbe1f956e5e6aadb5e7dfb2e6dd760d444ea2fe1.tar.gz |
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.
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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.213 2015/11/11 14:22:01 okan Exp $ + * $OpenBSD: client.c,v 1.214 2015/11/12 18:33:30 okan Exp $ */ #include <sys/types.h> @@ -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) |