diff options
author | infirit <[email protected]> | 2014-02-19 19:01:33 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-19 19:01:33 +0100 |
commit | b4ee12d2e49dae6fda8f1e9666b2cc8306cbe8be (patch) | |
tree | 8f20cac464b289a7af55830b1cc9d0053f46c95d /timerapplet/timerapplet.c | |
parent | b64a6f6fbd04e28430a2deca35c071121db1501e (diff) | |
download | mate-applets-b4ee12d2e49dae6fda8f1e9666b2cc8306cbe8be.tar.bz2 mate-applets-b4ee12d2e49dae6fda8f1e9666b2cc8306cbe8be.tar.xz |
timer-applet: Fix applet icon
Diffstat (limited to 'timerapplet/timerapplet.c')
-rw-r--r-- | timerapplet/timerapplet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c index 197079e6..05857f74 100644 --- a/timerapplet/timerapplet.c +++ b/timerapplet/timerapplet.c @@ -143,7 +143,7 @@ timer_callback (TimerApplet *applet) if (g_settings_get_boolean (applet->settings, SHOW_NOTIFICATION_KEY)) { NotifyNotification *n; - n = notify_notification_new (name, _("Timer finished!"), "time"); + n = notify_notification_new (name, _("Timer finished!"), APPLET_ICON); notify_notification_set_timeout (n, 30000); notify_notification_show (n, NULL); g_object_unref (G_OBJECT (n)); |