From: Michael Stapelberg Date: Sun, 12 Aug 2012 23:35:07 +0000 (+0200) Subject: Bugfix: non-i3bar formats always used color_bad (Thanks hongy19) X-Git-Tag: 2.6~11 X-Git-Url: https://git.sur5r.net/?p=i3%2Fi3status;a=commitdiff_plain;h=cfaeba4df17397ac8d99155bc166bba90db0dbbf Bugfix: non-i3bar formats always used color_bad (Thanks hongy19) fixes #772 --- diff --git a/include/i3status.h b/include/i3status.h index eb19d52..dc40c8f 100644 --- a/include/i3status.h +++ b/include/i3status.h @@ -99,7 +99,7 @@ enum { O_DZEN2, O_XMOBAR, O_I3BAR, O_NONE } output_format; yajl_gen_string(json_gen, (const unsigned char *)"color", strlen("color")); \ yajl_gen_string(json_gen, (const unsigned char *)val, strlen(val)); \ } else { \ - outwalk += sprintf(outwalk, "%s", color("color_bad")); \ + outwalk += sprintf(outwalk, "%s", color(colorstr)); \ } \ } \ } while (0)