From ea7ffdb66a37e5195296e6e01115f0ad7432402c Mon Sep 17 00:00:00 2001 From: speedie Date: Fri, 21 Apr 2023 12:06:58 +0200 Subject: [PATCH] fix empty space --- libs/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/client.c b/libs/client.c index 964d6ba..e558f0b 100644 --- a/libs/client.c +++ b/libs/client.c @@ -144,6 +144,6 @@ resizeclient(void) // no window/invalid window or menu height we had before is the same as the current window height if (!win || omh == mh) return; - XMoveResizeWindow(dpy, win, x, y, mw - 2 * sp - borderwidth, mh); + XMoveResizeWindow(dpy, win, x, y, mw - 2 * sp - borderwidth * 2, mh); drw_resize(drw, mw - 2 * sp - borderwidth * 2, mh); }