diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-02-15 14:13:53 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-02-15 14:13:53 +0100 |
commit | c3cb06b30ce433b0d7eec4d7324151cf40b08f3f (patch) | |
tree | 99c05c35d9a3e48070d246cf36cc92ca4dcb2d32 | |
parent | 1924f296a298b44680bd358541c2a0740b5af707 (diff) | |
download | weechat-c3cb06b30ce433b0d7eec4d7324151cf40b08f3f.zip |
Fix dump of bar colors in log file (missing color name)
-rw-r--r-- | src/gui/gui-bar.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index 934820068..b096caedd 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -2258,13 +2258,13 @@ gui_bar_print_log () gui_bar_filling_string[CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_FILLING_LEFT_RIGHT])]); log_printf (" size . . . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE])); log_printf (" size_max . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE_MAX])); - log_printf (" color_fg . . . . . . . : %d", + log_printf (" color_fg . . . . . . . : %d (%s)", CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_FG]), gui_color_get_name (CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_FG]))); - log_printf (" color_delim. . . . . . : %d", + log_printf (" color_delim. . . . . . : %d (%s)", CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_DELIM]), gui_color_get_name (CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_DELIM]))); - log_printf (" color_bg . . . . . . . : %d", + log_printf (" color_bg . . . . . . . : %d (%s)", CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_BG]), gui_color_get_name (CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_BG]))); log_printf (" separator. . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SEPARATOR])); |