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

core: fix option weechat.look.color_inactive_prefix_buffer

This commit is contained in:
Sebastien Helleu
2011-09-22 17:44:37 +02:00
parent f238e5dd42
commit e2cccb9a62
+2 -1
View File
@@ -588,7 +588,8 @@ gui_chat_display_time_to_prefix (struct t_gui_window *window,
if (!simulate)
{
gui_window_set_weechat_color (GUI_WINDOW_OBJECTS(window)->win_chat,
((gui_current_window == window) && (line->data->buffer->active)) ?
((!CONFIG_BOOLEAN(config_look_color_inactive_prefix_buffer))
|| ((gui_current_window == window) && (line->data->buffer->active))) ?
GUI_COLOR_CHAT_PREFIX_BUFFER :
GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_LINE);
}