From 00073431754665239372c207f74f87955ed5c87c Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Fri, 2 Aug 2013 00:49:15 -0400 Subject: [PATCH] messageTray: Remove dead code for updating the notification stack --- js/ui/messageTray.js | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index b3ca7ee43..7b61d11b6 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1460,7 +1460,6 @@ const SummaryItem = new Lang.Class({ let stackedNotification = this._stackedNotifications[i]; let notification = stackedNotification.notification; notification.collapseCompleted(); - notification.disconnect(stackedNotification.notificationExpandedId); notification.disconnect(stackedNotification.notificationDoneDisplayingId); notification.disconnect(stackedNotification.notificationDestroyedId); if (notification.actor.get_parent() == this.notificationStack) @@ -1479,7 +1478,6 @@ const SummaryItem = new Lang.Class({ _appendNotificationToStack: function(notification) { let stackedNotification = {}; stackedNotification.notification = notification; - stackedNotification.notificationExpandedId = notification.connect('expanded', Lang.bind(this, this._contentUpdated)); stackedNotification.notificationDoneDisplayingId = notification.connect('done-displaying', Lang.bind(this, this._notificationDoneDisplaying)); stackedNotification.notificationDestroyedId = notification.connect('destroy', Lang.bind(this, this._notificationDestroyed)); this._stackedNotifications.push(stackedNotification); @@ -1515,7 +1513,6 @@ const SummaryItem = new Lang.Class({ for (let i = 0; i < this._stackedNotifications.length; i++) { if (this._stackedNotifications[i].notification == notification) { let stackedNotification = this._stackedNotifications[i]; - notification.disconnect(stackedNotification.notificationExpandedId); notification.disconnect(stackedNotification.notificationDoneDisplayingId); notification.disconnect(stackedNotification.notificationDestroyedId); this._stackedNotifications.splice(i, 1); @@ -2699,7 +2696,6 @@ const MessageTray = new Lang.Class({ this._adjustSummaryBoxPointerPosition(); this._summaryBoxPointerState = State.SHOWING; - this._clickedSummaryItem.actor.add_style_pseudo_class('selected'); this._summaryBoxPointer.show(BoxPointer.PopupAnimation.FULL, Lang.bind(this, function() { this._summaryBoxPointerState = State.SHOWN; })); @@ -2708,14 +2704,10 @@ const MessageTray = new Lang.Class({ _onSummaryBoxPointerContentUpdated: function() { if (this._summaryBoxPointerItem.notificationStack.get_n_children() == 0) this._hideSummaryBoxPointer(); - this._adjustSummaryBoxPointerPosition(); }, _adjustSummaryBoxPointerPosition: function() { - if (!this._clickedSummaryItem) - return; - - this._summaryBoxPointer.setPosition(this._clickedSummaryItem.actor, 0); + this._summaryBoxPointer.setPosition(this._summaryBoxPointerItem.actor, 0); }, _setClickedSummaryItem: function(item, button) {