From b2185eb2b18d8cb2c475b74df75432c7d7c61b9a Mon Sep 17 00:00:00 2001 From: Marina Zhurakhinskaya Date: Wed, 21 Jul 2010 00:18:54 -0400 Subject: [PATCH] Always show the summary if it is summoned This ensures that the summary appears when we are showing a new notification and switch to the overview at the same time. Another effect of this patch is that the summary is shown if the user moves the mouse to the bottom right corner while a notification is being shown, which is ok. --- js/ui/messageTray.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 5fb83320d..de1b9f47c 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -883,7 +883,7 @@ MessageTray.prototype = { if (this._summaryState == State.HIDDEN) { if (notificationsDone && this._summaryNeedsToBeShown) this._showSummary(true); - else if (!notificationsVisible && summarySummoned) + else if (summarySummoned) this._showSummary(false); } else if (this._summaryState == State.SHOWN) { if (!summaryPinned)