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

Fix hotlist update when buffer is current one

This commit is contained in:
Sebastien Helleu
2008-03-11 12:27:07 +01:00
parent 3a5625f2f4
commit 24ea547090
+1 -1
View File
@@ -200,7 +200,7 @@ gui_hotlist_add (struct t_gui_buffer *buffer, int priority,
/* do not highlight current buffer */
if ((buffer == gui_current_window->buffer)
&& (!allow_current_buffer) && (!gui_buffer_is_scrolled (buffer)))
&& (!allow_current_buffer || (!gui_buffer_is_scrolled (buffer))))
return;
if (priority < GUI_HOTLIST_MIN)