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

core: set notify_level to 3 if highlight is forced in gui_line_hook_update (only if tag "notify_none" is not in the line) (issue #1529)

This commit is contained in:
Sébastien Helleu
2020-08-16 12:40:41 +02:00
parent 330d7d50d2
commit fca5a4b42c
+6
View File
@@ -1570,6 +1570,12 @@ gui_line_hook_update (struct t_gui_line *line,
line->data->notify_level = GUI_HOTLIST_HIGHLIGHT;
}
}
if (!notify_level_updated && highlight_updated && line->data->highlight
&& (line->data->notify_level >= 0))
{
line->data->notify_level = GUI_HOTLIST_HIGHLIGHT;
}
}
/*