summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNathaniel Evan <nathanielevan@zohomail.com>2023-08-01 00:46:32 +0700
committerSébastien Helleu <flashcode@flashtux.org>2023-08-08 06:59:14 +0200
commit070f0da1c044d540c6002d31c7335d8c63d0e39f (patch)
treeaa88865b66bab6cca1d04f0ab75451f74d1ae0a7 /src
parente0e839e7cc3852d5dafa0eb0d1af732001df10e9 (diff)
downloadweechat-070f0da1c044d540c6002d31c7335d8c63d0e39f.zip
fset: fix the colon in help bar being included in description color
Diffstat (limited to 'src')
-rw-r--r--src/plugins/fset/fset-bar-item.c4
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"),