systray: fixing togglebar barpadding issue

dwm-flexipatch-1.0
bakkeby 3 years ago
parent 91b3898405
commit 9c2283dec9

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

Loading…
Cancel
Save