summaryrefslogtreecommitdiff
path: root/src/core/wee-config.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-05-01 12:26:59 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-05-01 12:26:59 +0200
commit1836b40a4a7866200a98e5aa7cb18e41ed7ae0b5 (patch)
tree8574b354df2f2e61f010df0bd6f85d63f299d1c9 /src/core/wee-config.c
parent1dd211da9a6614ac3681d9913da1f5136ae363cd (diff)
downloadweechat-1836b40a4a7866200a98e5aa7cb18e41ed7ae0b5.zip
Move option irc.color.item_buffer_name_ssl to core (new name: weechat.color.status_name_ssl)
Diffstat (limited to 'src/core/wee-config.c')
-rw-r--r--src/core/wee-config.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c
index 3989b6181..29e536ff3 100644
--- a/src/core/wee-config.c
+++ b/src/core/wee-config.c
@@ -141,6 +141,7 @@ struct t_config_option *config_color_chat_text_found_bg;
struct t_config_option *config_color_chat_value;
struct t_config_option *config_color_status_number;
struct t_config_option *config_color_status_name;
+struct t_config_option *config_color_status_name_ssl;
struct t_config_option *config_color_status_filter;
struct t_config_option *config_color_status_data_msg;
struct t_config_option *config_color_status_data_private;
@@ -1746,6 +1747,13 @@ config_weechat_init_options ()
N_("text color for current buffer name in status bar"),
NULL, -1, 0, "white", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
+ config_color_status_name_ssl = config_file_new_option (
+ weechat_config_file, ptr_section,
+ "status_name_ssl", "color",
+ N_("text color for current buffer name in status bar, if data are "
+ "secured with a protocol like SSL"),
+ NULL, -1, 0, "lightgreen", NULL, 0,
+ NULL, NULL, &config_change_color, NULL, NULL, NULL);
config_color_status_filter = config_file_new_option (
weechat_config_file, ptr_section,
"status_filter", "color",