[gnome-shell] Handle new name for gnome-volume-control-applet



commit b8a5d3fd9b6be48c774d49a76db276a8e8ef7d90
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Mon Nov 15 10:29:45 2010 -0500

    Handle new name for gnome-volume-control-applet
    
    gnome-volume-control-applet was renamed to gnome-sound-applet when
    moved to the control-center module, so we need to check for both names
    when identifying the legacy status icon.

 js/ui/statusIconDispatcher.js |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/statusIconDispatcher.js b/js/ui/statusIconDispatcher.js
index 8c796ac..474cf54 100644
--- a/js/ui/statusIconDispatcher.js
+++ b/js/ui/statusIconDispatcher.js
@@ -9,7 +9,9 @@ const NotificationDaemon = imports.ui.notificationDaemon;
 
 const STANDARD_TRAY_ICON_IMPLEMENTATIONS = {
     'bluetooth-applet': 'bluetooth',
-    'gnome-volume-control-applet': 'volume',
+    'gnome-volume-control-applet': 'volume', // renamed to gnome-sound-applet
+                                             // when moved to control center
+    'gnome-sound-applet': 'volume',
     'nm-applet': 'network',
     'gnome-power-manager': 'battery',
     'keyboard': 'keyboard',



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]