mirror of
https://github.com/weechat/weechat.git
synced 2026-07-03 00:03:12 +02:00
Revert "irc: do not use away color for nicks in nicklist if option irc.look.color_nicks_in_nicklist is on"
This reverts commit 0c86e742c5.
This commit is contained in:
@@ -317,6 +317,9 @@ irc_nick_get_color_for_nicklist (struct t_irc_server *server,
|
||||
static char *nick_color_self = "weechat.color.chat_nick_self";
|
||||
static char *nick_color_away = "weechat.color.nicklist_away";
|
||||
|
||||
if (nick->away)
|
||||
return nick_color_away;
|
||||
|
||||
if (weechat_config_boolean(irc_config_look_color_nicks_in_nicklist))
|
||||
{
|
||||
if (irc_server_strcasecmp (server, nick->name, server->nick) == 0)
|
||||
@@ -325,9 +328,6 @@ irc_nick_get_color_for_nicklist (struct t_irc_server *server,
|
||||
return irc_nick_find_color_name (nick->name);
|
||||
}
|
||||
|
||||
if (nick->away)
|
||||
return nick_color_away;
|
||||
|
||||
return nick_color_bar_fg;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user