1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-07 02:03:13 +02:00

Fixed bugs with nicks color and sorting in nicklist

This commit is contained in:
Sebastien Helleu
2008-04-11 22:33:29 +02:00
parent 00e75b9b94
commit edeabd977b
3 changed files with 16 additions and 14 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ irc_nick_find_color (struct t_irc_nick *nick)
weechat_config_integer (weechat_config_get ("weechat.look.color_nicks_number")));
snprintf (color_name, sizeof (color_name),
"chat_nick_color%d", color);
"chat_nick_color%02d", color + 1);
return weechat_color (color_name);
}