mirror of
https://github.com/weechat/weechat.git
synced 2026-07-09 03:03:12 +02:00
core: use nick offline highlight color for prefix of action message when the nick is offline with a highlight
This commit is contained in:
+10
-10
@@ -1071,17 +1071,17 @@ gui_line_has_offline_nick (struct t_gui_line *line)
|
||||
{
|
||||
const char *nick;
|
||||
|
||||
if (line && gui_line_search_tag_starting_with (line, "prefix_nick"))
|
||||
if (!line)
|
||||
return 0;
|
||||
|
||||
nick = gui_line_get_nick_tag (line);
|
||||
if (nick
|
||||
&& (line->data->buffer->nicklist_root
|
||||
&& (line->data->buffer->nicklist_root->nicks
|
||||
|| line->data->buffer->nicklist_root->children))
|
||||
&& !gui_nicklist_search_nick (line->data->buffer, NULL, nick))
|
||||
{
|
||||
nick = gui_line_get_nick_tag (line);
|
||||
if (nick
|
||||
&& (line->data->buffer->nicklist_root
|
||||
&& (line->data->buffer->nicklist_root->nicks
|
||||
|| line->data->buffer->nicklist_root->children))
|
||||
&& !gui_nicklist_search_nick (line->data->buffer, NULL, nick))
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user