From a0d5ba9369fce6736dcf8e01966c6bb5a77973aa Mon Sep 17 00:00:00 2001 From: bakkeby Date: Fri, 14 Jan 2022 21:12:36 +0100 Subject: [PATCH] tags bar module: fix for wrong click offset ref. #215 --- patch/bar_tags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;