diff options
Diffstat (limited to 'patch/bar_status.c')
| -rw-r--r-- | patch/bar_status.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/patch/bar_status.c b/patch/bar_status.c index 0234276..756c97a 100644 --- a/patch/bar_status.c +++ b/patch/bar_status.c @@ -1,44 +1,28 @@ int width_status(Bar *bar, BarWidthArg *a) { - #if BAR_PANGO_PATCH return TEXTWM(stext); - #else - return TEXTW(stext); - #endif // BAR_PANGO_PATCH } #if BAR_EXTRASTATUS_PATCH int width_status_es(Bar *bar, BarWidthArg *a) { - #if BAR_PANGO_PATCH return TEXTWM(estext) - lrpad; - #else - return TEXTW(estext) - lrpad; - #endif // BAR_PANGO_PATCH } #endif // BAR_EXTRASTATUS_PATCH int draw_status(Bar *bar, BarDrawArg *a) { - #if BAR_PANGO_PATCH return drw_text(drw, a->x, 0, a->w, bh, lrpad / 2, stext, 0, True); - #else - return drw_text(drw, a->x, 0, a->w, bh, lrpad / 2, stext, 0); - #endif // BAR_PANGO_PATCH } #if BAR_EXTRASTATUS_PATCH int draw_status_es(Bar *bar, BarDrawArg *a) { - #if BAR_PANGO_PATCH return drw_text(drw, a->x, 0, a->w, bh, 0, estext, 0, True); - #else - return drw_text(drw, a->x, 0, a->w, bh, 0, estext, 0); - #endif // BAR_PANGO_PATCH } #endif // BAR_EXTRASTATUS_PATCH |
