[gnome-shell] Load extensions before the status area is started



commit 7810db6b9fef0775eb3021775cc332e1fdeb4472
Author: Giovanni Campagna <gcampagna src gnome org>
Date:   Sun Nov 28 13:42:29 2010 +0100

    Load extensions before the status area is started
    
    Defer starting the status area until all extensions are loaded, so
    they can add themselves as status icons.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=621017

 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 8f2c1e9..1410d28 100644
--- a/js/ui/main.js
+++ b/js/ui/main.js
@@ -145,7 +145,6 @@ function start() {
     windowAttentionHandler = new WindowAttentionHandler.WindowAttentionHandler();
     telepathyClient = new TelepathyClient.Client();
 
-    panel.startStatusArea();
     statusIconDispatcher.start(messageTray.actor);
 
     ctrlAltTabManager = new CtrlAltTab.CtrlAltTabManager();
@@ -188,6 +187,7 @@ function start() {
     ExtensionSystem.init();
     ExtensionSystem.loadExtensions();
 
+    panel.startStatusArea();
     panel.startupAnimation();
 
     let display = global.screen.get_display();



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