diff options
| author | bakkeby <[email protected]> | 2022-01-14 21:12:36 +0100 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2022-01-14 21:12:36 +0100 |
| commit | 406faa9cc3019b90760cae54414e513f61c10c73 (patch) | |
| tree | 780b453a3d484869b47e66ba6bcdb9ec837197a5 | |
| parent | 0404e12dbaca203325f391f751f1188f91a7ef1a (diff) | |
| download | dwm-flexipatch-406faa9cc3019b90760cae54414e513f61c10c73.tar.gz dwm-flexipatch-406faa9cc3019b90760cae54414e513f61c10c73.zip | |
tags bar module: fix for wrong click offset ref. #215
| -rw-r--r-- | patch/bar_tags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patch/bar_tags.c b/patch/bar_tags.c index c618ff5..8b9092d 100644 --- a/patch/bar_tags.c +++ b/patch/bar_tags.c @@ -70,7 +70,7 @@ draw_tags(Bar *bar, BarArg *a) int click_tags(Bar *bar, Arg *arg, BarArg *a) { - int i = 0, x = lrpad / 2; + int i = 0, x = 0; #if BAR_HIDEVACANTTAGS_PATCH Client *c; unsigned int occ = 0; |
