diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-22 11:04:36 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-04-26 21:08:02 +0200 |
commit | 5973ceffb82537bc334a26a211d8ceedca71e3f8 (patch) | |
tree | 50eee471cce628ab53ad563faf30335e30f8a50a /src | |
parent | 875d6e7e6f84392085e9e8ed0c08800dbe7010e3 (diff) | |
download | weechat-5973ceffb82537bc334a26a211d8ceedca71e3f8.zip |
core: change default prefix_suffix char and color (issue #1920)
Default values changed:
- weechat.look.prefix_suffix: "|" -> "│"
- weechat.color.chat_prefix_suffix: green -> 24
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-config.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |