From 1071ac5d25bbbd68cc2fc3c75e74a009cb0e2c52 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Tue, 8 Jul 2014 14:15:24 -0400 Subject: [PATCH] notificationDaemon: Group tray icon stuff together --- js/ui/notificationDaemon.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/js/ui/notificationDaemon.js b/js/ui/notificationDaemon.js index f596e8901..c2aeb1502 100644 --- a/js/ui/notificationDaemon.js +++ b/js/ui/notificationDaemon.js @@ -120,15 +120,12 @@ const FdoNotificationDaemon = new Lang.Class({ this._nextNotificationId = 1; + Shell.WindowTracker.get_default().connect('notify::focus-app', Lang.bind(this, this._onFocusAppChanged)); + Main.overview.connect('hidden', Lang.bind(this, this._onFocusAppChanged)); + this._trayManager = new Shell.TrayManager(); this._trayIconAddedId = this._trayManager.connect('tray-icon-added', Lang.bind(this, this._onTrayIconAdded)); this._trayIconRemovedId = this._trayManager.connect('tray-icon-removed', Lang.bind(this, this._onTrayIconRemoved)); - - Shell.WindowTracker.get_default().connect('notify::focus-app', - Lang.bind(this, this._onFocusAppChanged)); - Main.overview.connect('hidden', - Lang.bind(this, this._onFocusAppChanged)); - this._trayManager.manage_screen(global.screen, Main.messageTray.actor); },