mirror of
https://github.com/mintycube/dwm.git
synced 2024-10-22 12:05:45 +00:00
taggrid: fix for invalid highlighting for the last tag when columns have an uneven number of clients
This commit is contained in:
parent
aa70728d00
commit
e780c5078f
@ -25,7 +25,8 @@ draw_taggrid(Monitor *m, BarDrawArg *a)
|
||||
/* We will draw LENGTH(tags) squares in tagraws raws. */
|
||||
for (j = 0, i = 0; j < tagrows; j++) {
|
||||
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;
|
||||
|
||||
/* 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,
|
||||
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;
|
||||
if (x > max_x) {
|
||||
max_x = x;
|
||||
|
Loading…
x
Reference in New Issue
Block a user