summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2018-06-19 15:48:00 -0700
committerJohn Stebbins <[email protected]>2018-06-19 15:48:00 -0700
commitd217b67c37d9c00e089238a43835f8f99314ea29 (patch)
tree8cfae71d553c1f93f55469b68fdc50543dd344c2
parent5eccfd54308b64bf9d5bce57bd0c982c4aee4795 (diff)
LinGui: use normal priority for notification
-rw-r--r--gtk/src/callbacks.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/gtk/src/callbacks.c b/gtk/src/callbacks.c
index 3032da463..b14f849b0 100644
--- a/gtk/src/callbacks.c
+++ b/gtk/src/callbacks.c
@@ -5765,9 +5765,8 @@ ghb_notify_done(signal_user_data_t *ud)
notification = g_notification_new(_("Encode Complete"));
g_notification_set_body(notification,
_("Put down that cocktail, Your HandBrake queue is done!"));
- icon = g_themed_icon_new("hb-icon");
+ icon = g_themed_icon_new("fr.handbrake.ghb");
g_notification_set_icon(notification, icon);
- g_notification_set_priority(notification, G_NOTIFICATION_PRIORITY_URGENT);
g_application_send_notification(G_APPLICATION(ud->app), "cocktail", notification);
g_object_unref(G_OBJECT(notification));