From d7a7ac67eee0411e9819335d52ca235eeb997316 Mon Sep 17 00:00:00 2001 From: bakkeby Date: Mon, 20 Jul 2020 11:58:21 +0200 Subject: [PATCH] barmodules: removing tags padding --- patch/bar_tags.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patch/bar_tags.c b/patch/bar_tags.c index 4d88784..1d97acf 100644 --- a/patch/bar_tags.c +++ b/patch/bar_tags.c @@ -20,14 +20,14 @@ width_tags(Bar *bar, BarWidthArg *a) w += TEXTW(tags[i]); #endif // BAR_ALTERNATIVE_TAGS_PATCH } - return w + lrpad; + return w; } int draw_tags(Bar *bar, BarDrawArg *a) { int invert; - int w, x = a->x + lrpad / 2; + int w, x = a->x; #if BAR_ALTERNATIVE_TAGS_PATCH int wdelta; #endif // BAR_ALTERNATIVE_TAGS_PATCH