15 lines
825 B
Diff
15 lines
825 B
Diff
diff -Nru lxmusic-0.4.5.orig/src/lxmusic-notify.c lxmusic-0.4.5/src/lxmusic-notify.c
|
|
--- lxmusic-0.4.5.orig/src/lxmusic-notify.c 2012-05-20 00:09:58.000000000 +0200
|
|
+++ lxmusic-0.4.5/src/lxmusic-notify.c 2012-07-30 00:06:53.499831208 +0200
|
|
@@ -84,9 +84,8 @@
|
|
else
|
|
g_string_append( message, title );
|
|
struct _LXMusicNotification *lxn = g_new ( struct _LXMusicNotification, 1);
|
|
- lxn->notify = notify_notification_new (summary, message->str, NULL, NULL);
|
|
+ lxn->notify = notify_notification_new (summary, message->str, NULL);
|
|
notify_notification_set_urgency (lxn->notify, NOTIFY_URGENCY_NORMAL);
|
|
- notify_notification_attach_to_status_icon( lxn->notify, status_icon );
|
|
notify_notification_set_timeout (lxn->notify, NOTIFY_EXPIRES_DEFAULT);
|
|
g_string_free( message, TRUE );
|
|
return lxn;
|