From 326d5c7fb8d07b9751edf315668a85cd6b5a9b32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 30 Jun 2017 01:11:53 +0200 Subject: [PATCH] notificationDaemon: Fix fallback icon names The gtk-dialog-* names are old and non-standard, and haven't been provided by the default icon theme for quite a while ... https://bugzilla.gnome.org/show_bug.cgi?id=784245 --- js/ui/notificationDaemon.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/notificationDaemon.js b/js/ui/notificationDaemon.js index df1a43dbf..62096258d 100644 --- a/js/ui/notificationDaemon.js +++ b/js/ui/notificationDaemon.js @@ -128,10 +128,10 @@ const FdoNotificationDaemon = new Lang.Class({ switch (hints.urgency) { case Urgency.LOW: case Urgency.NORMAL: - stockIcon = 'gtk-dialog-info'; + stockIcon = 'dialog-information'; break; case Urgency.CRITICAL: - stockIcon = 'gtk-dialog-error'; + stockIcon = 'dialog-error'; break; } return new Gio.ThemedIcon({ name: stockIcon });