summary refs log tree commit diff stats
path: root/src/fe-gtk/plugin-tray.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-17 20:45:51 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-17 20:45:51 +0200
commit0cf80ecb321f493e3e35d544a970def9dab4f96a (patch)
tree3c5d0ace6d2d667fe98fb8c144ecb3a307ed7ff4 /src/fe-gtk/plugin-tray.c
parent8ef97f24e03ac8a4c6aaeac940a7ec0f65a1332b (diff)
For private messages, use message icon instead of hightlight icon
Diffstat (limited to 'src/fe-gtk/plugin-tray.c')
-rw-r--r--src/fe-gtk/plugin-tray.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c
index 0dcc8f7f..13eacacf 100644
--- a/src/fe-gtk/plugin-tray.c
+++ b/src/fe-gtk/plugin-tray.c
@@ -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)