diff options
author | Nathaniel Evan <nathanielevan@zohomail.com> | 2023-08-01 00:46:32 +0700 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-08-08 06:59:14 +0200 |
commit | 070f0da1c044d540c6002d31c7335d8c63d0e39f (patch) | |
tree | aa88865b66bab6cca1d04f0ab75451f74d1ae0a7 /src/plugins/fset/fset-bar-item.c | |
parent | e0e839e7cc3852d5dafa0eb0d1af732001df10e9 (diff) | |
download | weechat-070f0da1c044d540c6002d31c7335d8c63d0e39f.zip |
fset: fix the colon in help bar being included in description color
Diffstat (limited to 'src/plugins/fset/fset-bar-item.c')
-rw-r--r-- | src/plugins/fset/fset-bar-item.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/fset/fset-bar-item.c b/src/plugins/fset/fset-bar-item.c index c260a5ae1..feaf1fc7f 100644 --- a/src/plugins/fset/fset-bar-item.c +++ b/src/plugins/fset/fset-bar-item.c @@ -204,12 +204,14 @@ fset_bar_item_fset_cb (const void *pointer, void *data, snprintf (str_help, sizeof (str_help), /* TRANSLATORS: "%s%s%s:" at beginning of string it the name of option */ - _("%s%s%s: %s %s[%s%s]%s"), + _("%s%s%s: %s%s%s %s[%s%s]%s"), weechat_color (weechat_config_string (fset_config_color_help_name)), ptr_fset_option->name, + weechat_color ("bar_fg"), weechat_color (weechat_config_string (fset_config_color_help_description)), (ptr_fset_option->description && ptr_fset_option->description[0]) ? _(ptr_fset_option->description) : _("(no description)"), + weechat_color ("bar_fg"), weechat_color ("bar_delim"), *default_and_values, weechat_color ("bar_delim"), |