diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-10-26 13:13:17 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-10-26 13:13:17 +0100 |
commit | a092e727318b9d55d42e5a4ffb94254eec6c50ec (patch) | |
tree | 56e00ec616d097493d58460d8a9c160288cbf066 /src | |
parent | 125adea6503d01fe776cecb68db931de00aa2876 (diff) | |
download | weechat-a092e727318b9d55d42e5a4ffb94254eec6c50ec.zip |
core: add note about option weechat.look.color_nick_offline in help of color options for offline nick
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-config.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 5932cdf78..78a5cefd5 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -2843,19 +2843,23 @@ config_weechat_init_options () config_color_chat_nick_offline = config_file_new_option ( weechat_config_file, ptr_section, "chat_nick_offline", "color", - N_("text color for offline nick (not in nicklist any more)"), + N_("text color for offline nick (not in nicklist any more); this " + "color is used only if option weechat.look.color_nick_offline is " + "enabled"), NULL, GUI_COLOR_CHAT_NICK_OFFLINE, 0, "default", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); config_color_chat_nick_offline_highlight = config_file_new_option ( weechat_config_file, ptr_section, "chat_nick_offline_highlight", "color", - N_("text color for offline nick with highlight"), + N_("text color for offline nick with highlight; this color is used " + "only if option weechat.look.color_nick_offline is enabled"), NULL, -1, 0, "default", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); config_color_chat_nick_offline_highlight_bg = config_file_new_option ( weechat_config_file, ptr_section, "chat_nick_offline_highlight_bg", "color", - N_("background color for offline nick with highlight"), + N_("background color for offline nick with highlight; this color is " + "used only if option weechat.look.color_nick_offline is enabled"), NULL, -1, 0, "blue", NULL, 0, NULL, NULL, &config_change_color, NULL, NULL, NULL); config_color_chat_nick_other = config_file_new_option ( |