diff options
| author | bakkeby <[email protected]> | 2020-08-30 10:03:27 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-08-30 10:03:27 +0200 |
| commit | ff7fbd24106c716a141830b472b7fca48f52476f (patch) | |
| tree | ab165f818f6404a06a39cae31813ed06f3ed3e8d | |
| parent | 85c99ae8d4dcb0c55a3fa424a4c0adfdfd67965d (diff) | |
| download | dwm-flexipatch-ff7fbd24106c716a141830b472b7fca48f52476f.tar.gz dwm-flexipatch-ff7fbd24106c716a141830b472b7fca48f52476f.zip | |
indicator bottom bar should probably be filled depending on whether the tag is selected or not
| -rw-r--r-- | patch/bar_indicators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patch/bar_indicators.c b/patch/bar_indicators.c index 676485f..51c1ea2 100644 --- a/patch/bar_indicators.c +++ b/patch/bar_indicators.c @@ -36,7 +36,7 @@ drawindicator(Monitor *m, Client *c, unsigned int occ, int x, int w, unsigned in drw_rect(drw, x + boxw, 0, w - ( 2 * boxw + 1), 1, filled, invert); break; case INDICATOR_BOTTOM_BAR: - drw_rect(drw, x + boxw, bh - boxw/2, w - ( 2 * boxw + 1), boxw/2, 1, invert); + drw_rect(drw, x + boxw, bh - boxw/2, w - ( 2 * boxw + 1), boxw/2, filled, invert); break; case INDICATOR_BOTTOM_BAR_SLIM: drw_rect(drw, x + boxw, bh - boxw/2, w - ( 2 * boxw + 1), 1, 1, invert); |
