summaryrefslogtreecommitdiff
path: root/src/gui/gui-common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/gui-common.c')
-rw-r--r--src/gui/gui-common.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/gui-common.c b/src/gui/gui-common.c
index f01e07dc7..edf0541b2 100644
--- a/src/gui/gui-common.c
+++ b/src/gui/gui-common.c
@@ -180,13 +180,13 @@ gui_add_to_line (t_gui_buffer *buffer, int type, char *nick, char *message)
buffer->notify_level)
{
if (buffer->last_line->line_with_highlight)
- hotlist_add (HOTLIST_HIGHLIGHT, SERVER(buffer), buffer);
+ hotlist_add (HOTLIST_HIGHLIGHT, SERVER(buffer), buffer, 0);
else if (BUFFER_IS_PRIVATE(buffer) && (buffer->last_line->line_with_message))
- hotlist_add (HOTLIST_PRIVATE, SERVER(buffer), buffer);
+ hotlist_add (HOTLIST_PRIVATE, SERVER(buffer), buffer, 0);
else if (buffer->last_line->line_with_message)
- hotlist_add (HOTLIST_MSG, SERVER(buffer), buffer);
+ hotlist_add (HOTLIST_MSG, SERVER(buffer), buffer, 0);
else
- hotlist_add (HOTLIST_LOW, SERVER(buffer), buffer);
+ hotlist_add (HOTLIST_LOW, SERVER(buffer), buffer, 0);
gui_status_draw (gui_current_window->buffer, 1);
}
}