taggrid: fix for invalid highlighting for the last tag when columns have an uneven number of clients

This commit is contained in:
bakkeby 2020-07-15 17:14:14 +02:00
parent aa70728d00
commit e780c5078f

View File

@ -25,7 +25,8 @@ draw_taggrid(Monitor *m, BarDrawArg *a)
/* We will draw LENGTH(tags) squares in tagraws raws. */ /* We will draw LENGTH(tags) squares in tagraws raws. */
for (j = 0, i = 0; j < tagrows; j++) { for (j = 0, i = 0; j < tagrows; j++) {
x = a->x; x = a->x;
for (k = 0; k < columns && i < LENGTH(tags); k++, i++) { for (k = 0; k < columns; k++, i++) {
if (i < LENGTH(tags)) {
invert = m->tagset[m->seltags] & 1 << i ? 0 : 1; invert = m->tagset[m->seltags] & 1 << i ? 0 : 1;
/* Select active color for current square */ /* Select active color for current square */
@ -40,6 +41,14 @@ draw_taggrid(Monitor *m, BarDrawArg *a)
XFillRectangle(dpy, drw->drawable, drw->gc, x + 1, y + 1, XFillRectangle(dpy, drw->drawable, drw->gc, x + 1, y + 1,
h / 2, h / 2); h / 2, h / 2);
} }
} else {
#if BAR_VTCOLORS_PATCH
XSetForeground(drw->dpy, drw->gc, scheme[SchemeTagsNorm][ColBg].pixel);
#else
XSetForeground(drw->dpy, drw->gc, scheme[SchemeNorm][ColBg].pixel);
#endif // BAR_VTCOLORS_PATCH
XFillRectangle(dpy, drw->drawable, drw->gc, x+1, y+1, h-1, h);
}
x += h; x += h;
if (x > max_x) { if (x > max_x) {
max_x = x; max_x = x;