Got report that systray was showing too far down when combined with bottom bar and barpadding

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

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

Loading…
Cancel
Save