From 0cf80ecb321f493e3e35d544a970def9dab4f96a Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Tue, 17 Jul 2012 20:45:51 +0200 Subject: [PATCH] For private messages, use message icon instead of hightlight icon --- src/fe-gtk/plugin-tray.c | 4 ++-- 1 file 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)