mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +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:
@@ -47,6 +47,7 @@ New features::
|
||||
|
||||
Bug fixes::
|
||||
|
||||
* core: use nick offline highlight color for prefix of action message when the nick is offline with a highlight
|
||||
* core: add missing hdata name "buffer" in hdata "hotlist"
|
||||
* core: fix reset to initial scroll position after search of text in buffer (issue #2093)
|
||||
* core: add missing mouse events "alt-ctrl-button2" and "alt-ctrl-button3"
|
||||
|
||||
+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