From 127c8e0eb6fe717a8120208116d191c82ad88461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 7 Apr 2023 18:55:56 +0200 Subject: [PATCH] core: change default color of "mouse_status" item to lightgreen --- ChangeLog.adoc | 2 +- src/core/wee-config.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog.adoc b/ChangeLog.adoc index 00d754974..3c00c3934 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -32,7 +32,7 @@ New features:: * core: add access to hashtable properties in evaluation of expressions (issue #1888) * core: display similar command names when a command is unknown (issue #1877) * core, plugins: make many identifiers case sensitive (issue #1872, issue #398, bug #32213) - * core: add item "mouse_status" in default status bar + * core: add item "mouse_status" in default status bar, change default color to lightgreen * api: add function config_set_version (issue #1238) * alias: use lower case for default aliases, rename all aliases to lower case on upgrade (issue #1872) * irc: add command `/rules` (issue #1864) diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 297bdb2cf..2d0e157aa 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -4501,7 +4501,7 @@ config_weechat_init_options () weechat_config_file, weechat_config_section_color, "status_mouse", "color", N_("text color for mouse indicator in status bar"), - NULL, -1, 0, "green", NULL, 0, + NULL, -1, 0, "lightgreen", NULL, 0, NULL, NULL, NULL, &config_change_color, NULL, NULL, NULL, NULL, NULL);