[gnome-shell] panel: Start the status area before extensions are loaded



commit 83265bb12a301b7cff56dd6d0e613dfdf1257f6c
Author: Giovanni Campagna <gcampagna src gnome org>
Date:   Mon Aug 22 23:47:59 2011 +0200

    panel: Start the status area before extensions are loaded
    
    The order of indicators depends on the order of calls to
    Panel.addToStatusArea. To have it consistent across enabling and
    disabling of extensions, we need to place the core ones first.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=653205

 js/ui/main.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/main.js b/js/ui/main.js
index 5cde541..5b1aef3 100644
--- a/js/ui/main.js
+++ b/js/ui/main.js
@@ -149,6 +149,7 @@ function start() {
     layoutManager.init();
     overview.init();
     statusIconDispatcher.start(messageTray.actor);
+    panel.startStatusArea();
 
     _startDate = new Date();
 
@@ -188,7 +189,6 @@ function start() {
     ExtensionSystem.init();
     ExtensionSystem.loadExtensions();
 
-    panel.startStatusArea();
     panel.startupAnimation();
 
     global.display.connect('overlay-key', Lang.bind(overview, overview.toggle));



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