diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-05-28 23:13:07 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-05-28 23:13:07 +0200 |
commit | 2e647d4c5892e8e1494a1b0a4a41d0c0ad87522b (patch) | |
tree | bfc241c5a9eba40fd6badeab0b2ec5b9d332ef96 /src/core/wee-config.c | |
parent | 47db2b71babd09c2390a5bd83b7028e57403d524 (diff) | |
download | weechat-2e647d4c5892e8e1494a1b0a4a41d0c0ad87522b.zip |
core: set options weechat.look.color_inactive_{buffer|window} to "on" by default
Diffstat (limited to 'src/core/wee-config.c')
-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 8c932c416..c2de4e3c3 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -1946,13 +1946,13 @@ config_weechat_init_options () "color_inactive_window", "boolean", N_("use a different color for lines in inactive window (when window " "is not current window)"), - NULL, 0, 0, "off", NULL, 0, NULL, NULL, &config_change_buffers, NULL, NULL, NULL); + NULL, 0, 0, "on", NULL, 0, NULL, NULL, &config_change_buffers, NULL, NULL, NULL); config_look_color_inactive_buffer = config_file_new_option ( weechat_config_file, ptr_section, "color_inactive_buffer", "boolean", N_("use a different color for lines in inactive buffer (when line is " "from a merged buffer not selected)"), - NULL, 0, 0, "off", NULL, 0, NULL, NULL, &config_change_buffers, NULL, NULL, NULL); + NULL, 0, 0, "on", NULL, 0, NULL, NULL, &config_change_buffers, NULL, NULL, NULL); config_look_color_inactive_time = config_file_new_option ( weechat_config_file, ptr_section, "color_inactive_time", "boolean", |