From 7810db6b9fef0775eb3021775cc332e1fdeb4472 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Sun, 28 Nov 2010 13:42:29 +0100 Subject: [PATCH] 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 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/main.js b/js/ui/main.js index 8f2c1e9c6..1410d2856 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();