1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-22 02:46:38 +02:00

script: fix color used for script description on script buffer

This commit is contained in:
Sebastien Helleu
2012-08-23 19:06:18 +02:00
parent 2c0b860d62
commit ed9537ff76
+5 -1
View File
@@ -104,7 +104,11 @@ script_buffer_display_line_script (int line, struct t_repo_script *script)
num_spaces = max_length - weechat_utf8_strlen_screen (script->description);
snprintf (str_item, sizeof (str_item),
"%s%s",
weechat_color ((line == script_buffer_selected_line) ? "white" : "249"),
weechat_color (
weechat_config_string (
(line == script_buffer_selected_line) ?
script_config_color_text_description_selected :
script_config_color_text_description)),
script->description);
}
break;