Fixed a dwmblocks / statuscmd / systray compatibility issue where button clicks would be misaligned if systray pinning is used and systray is on another monitor
This commit is contained in:
7
dwm.c
7
dwm.c
@@ -838,9 +838,6 @@ buttonpress(XEvent *e)
|
|||||||
#if BARPADDING_PATCH
|
#if BARPADDING_PATCH
|
||||||
padding -= sp * 2;
|
padding -= sp * 2;
|
||||||
#endif // BARPADDING_PATCH
|
#endif // BARPADDING_PATCH
|
||||||
#if SYSTRAY_PATCH
|
|
||||||
padding -= getsystraywidth();
|
|
||||||
#endif // SYSTRAY_PATCH
|
|
||||||
#if TAGGRID_PATCH
|
#if TAGGRID_PATCH
|
||||||
columns = LENGTH(tags) / tagrows + ((LENGTH(tags) % tagrows > 0) ? 1 : 0);
|
columns = LENGTH(tags) / tagrows + ((LENGTH(tags) % tagrows > 0) ? 1 : 0);
|
||||||
#endif // TAGGRID_PATCH
|
#endif // TAGGRID_PATCH
|
||||||
@@ -855,6 +852,10 @@ buttonpress(XEvent *e)
|
|||||||
selmon = m;
|
selmon = m;
|
||||||
focus(NULL);
|
focus(NULL);
|
||||||
}
|
}
|
||||||
|
#if SYSTRAY_PATCH
|
||||||
|
if (showsystray && selmon == systraytomon(selmon))
|
||||||
|
padding -= getsystraywidth();
|
||||||
|
#endif // SYSTRAY_PATCH
|
||||||
if (ev->window == selmon->barwin) {
|
if (ev->window == selmon->barwin) {
|
||||||
i = x = 0;
|
i = x = 0;
|
||||||
#if LEFTLAYOUT_PATCH
|
#if LEFTLAYOUT_PATCH
|
||||||
|
Reference in New Issue
Block a user