fix empty space

This commit is contained in:
speedie 2023-04-21 12:06:58 +02:00
parent 7c301a0bd4
commit ea7ffdb66a

View file

@ -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);
}