summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-02-18 00:15:47 -0500
committerTingPing <tngpng@gmail.com>2013-02-18 00:15:47 -0500
commit3915abc91eb0d0f0ebe73d508009a146ca5d7fdb (patch)
treec493bd2a9f88751f082b00597b48baa4efb68692 /src
parenta1eb937d096d10b2469a02f38357f152d9544811 (diff)
fix path to icon for notifications
Diffstat (limited to 'src')
-rw-r--r--src/fe-gtk/plugin-tray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c
index 3c9bed38..2ba76910 100644
--- a/src/fe-gtk/plugin-tray.c
+++ b/src/fe-gtk/plugin-tray.c
@@ -173,7 +173,7 @@ fe_tray_set_balloon (const char *title, const char *text)
 	notify_text = strip_color (text, -1, STRIP_ALL|STRIP_ESCMARKUP);
 	notify_title = strip_color (title, -1, STRIP_ALL);
 
-	notification = XC_NOTIFY_NEW (notify_title, notify_text, HEXCHATSHAREDIR "/pixmaps/hexchat.png", NULL);
+	notification = XC_NOTIFY_NEW (notify_title, notify_text, HEXCHATSHAREDIR "/icons/hicolor/scalable/apps/hexchat.svg", NULL);
 
 	g_free ((char *)notify_title);
 	g_free ((char *)notify_text);