From 0ac215f9de02f21243c5484b6a13547e0c097fe9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 13 Oct 2012 14:29:06 +0200 Subject: [PATCH] autorunManager: Fix another StIconType removal regression https://bugzilla.gnome.org/show_bug.cgi?id=686079 --- js/ui/components/autorunManager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/components/autorunManager.js b/js/ui/components/autorunManager.js index 5490df5b3..83ca89448 100644 --- a/js/ui/components/autorunManager.js +++ b/js/ui/components/autorunManager.js @@ -410,7 +410,7 @@ const AutorunResidentNotification = new Lang.Class({ expand: true }); let ejectIcon = - new St.Icon({ icon_name: 'media-eject', + new St.Icon({ icon_name: 'media-eject-symbolic', style_class: 'hotplug-resident-eject-icon' }); let ejectButton = @@ -611,7 +611,7 @@ const AutorunTransientNotification = new Lang.Class({ _buttonForEject: function() { let box = new St.BoxLayout(); - let icon = new St.Icon({ icon_name: 'media-eject', + let icon = new St.Icon({ icon_name: 'media-eject-symbolic', style_class: 'hotplug-notification-item-icon' }); box.add(icon);