systray: fixing togglebar barpadding issue

This commit is contained in:
bakkeby
2021-01-25 09:28:06 +01:00
parent 91b3898405
commit 9c2283dec9

10
dwm.c
View File

@@ -3698,13 +3698,15 @@ togglebar(const Arg *arg)
if (!selmon->showbar) if (!selmon->showbar)
wc.y = -bh; wc.y = -bh;
else if (selmon->showbar) { else if (selmon->showbar) {
#if BARPADDING_PATCH
wc.y = vp;
if (!selmon->topbar)
wc.y = selmon->mh - bh + vp;
#else
wc.y = 0; wc.y = 0;
if (!selmon->topbar) if (!selmon->topbar)
#if BARPADDING_PATCH
wc.y = selmon->mh - bh + vp;
#else
wc.y = selmon->mh - bh; wc.y = selmon->mh - bh;
#endif // BARPADDING_PATCH #endif // BARPADDING_PATCH
} }
XConfigureWindow(dpy, systray->win, CWY, &wc); XConfigureWindow(dpy, systray->win, CWY, &wc);
} }