From 96918a06e68bc9940a9205b2c312707f09c415bf Mon Sep 17 00:00:00 2001 From: okan Date: Thu, 5 Jan 2017 21:18:20 +0000 Subject: Ensure client stays inbound on key-based resize; based on logic existing in key-based client move; from Vadim Vygonets. --- kbfunc.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'kbfunc.c') diff --git a/kbfunc.c b/kbfunc.c index 134a8e7..befaf64 100644 --- a/kbfunc.c +++ b/kbfunc.c @@ -156,6 +156,10 @@ kbfunc_client_resize(void *ctx, union arg *arg, enum xev xev) cc->geom.w = cc->hint.minw; if ((cc->geom.h += my * cc->hint.inch) < cc->hint.minh) cc->geom.h = cc->hint.minh; + if (cc->geom.x + cc->geom.w < 0) + cc->geom.x = -cc->geom.w; + if (cc->geom.y + cc->geom.h < 0) + cc->geom.y = -cc->geom.h; client_resize(cc, 1); /* Make sure the pointer stays within the window. */ -- cgit 1.4.1