diff options
| author | bakkeby <[email protected]> | 2020-07-20 11:58:21 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-07-20 11:58:21 +0200 |
| commit | d7a7ac67eee0411e9819335d52ca235eeb997316 (patch) | |
| tree | 001c3ca221e6bf1001a265383bfd7b0aba3968e4 /patch | |
| parent | 3acae9e67dc745b285acdeb2eb84aea58d92df1f (diff) | |
| download | dwm-flexipatch-d7a7ac67eee0411e9819335d52ca235eeb997316.tar.gz dwm-flexipatch-d7a7ac67eee0411e9819335d52ca235eeb997316.zip | |
barmodules: removing tags padding
Diffstat (limited to 'patch')
| -rw-r--r-- | patch/bar_tags.c | 4 |
1 files 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 |
