1
0
mirror of https://github.com/moparisthebest/hexchat synced 2025-01-31 15:30:17 -05:00

For private messages, use message icon instead of hightlight icon

This commit is contained in:
Berke Viktor 2012-07-17 20:45:51 +02:00
parent 8ef97f24e0
commit 0cf80ecb32

View File

@ -332,10 +332,10 @@ fe_tray_set_icon (feicon icon)
case FE_ICON_NORMAL:
break;
case FE_ICON_MESSAGE:
case FE_ICON_PRIVMSG:
tray_set_flash (ICON_MSG);
break;
case FE_ICON_HIGHLIGHT:
case FE_ICON_PRIVMSG:
tray_set_flash (ICON_HILIGHT);
break;
case FE_ICON_FILEOFFER:
@ -627,7 +627,7 @@ tray_priv (char *from, char *text)
if (alert_match_word (from, prefs.irc_no_hilight))
return;
tray_set_flash (ICON_HILIGHT);
tray_set_flash (ICON_MSG);
network = xchat_get_info (ph, "network");
if (!network)