From 5973ceffb82537bc334a26a211d8ceedca71e3f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sat, 22 Apr 2023 11:04:36 +0200 Subject: core: change default prefix_suffix char and color (issue #1920) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Default values changed: - weechat.look.prefix_suffix: "|" -> "│" - weechat.color.chat_prefix_suffix: green -> 24 --- src/core/wee-config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/core/wee-config.c b/src/core/wee-config.c index ce8dce8ef..5dc425a93 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -3795,7 +3795,7 @@ config_weechat_init_options () weechat_config_file, weechat_config_section_look, "prefix_suffix", "string", N_("string displayed after prefix"), - NULL, 0, 0, "|", NULL, 0, + NULL, 0, 0, "│", NULL, 0, NULL, NULL, NULL, &config_change_buffers, NULL, NULL, NULL, NULL, NULL); @@ -4287,7 +4287,7 @@ config_weechat_init_options () weechat_config_file, weechat_config_section_color, "chat_prefix_suffix", "color", N_("text color for suffix (after prefix)"), - NULL, GUI_COLOR_CHAT_PREFIX_SUFFIX, 0, "green", NULL, 0, + NULL, GUI_COLOR_CHAT_PREFIX_SUFFIX, 0, "24", NULL, 0, NULL, NULL, NULL, &config_change_color, NULL, NULL, NULL, NULL, NULL); -- cgit v1.2.3