[gnome-shell] Always show the summary if it is summoned



commit b2185eb2b18d8cb2c475b74df75432c7d7c61b9a
Author: Marina Zhurakhinskaya <marinaz redhat com>
Date:   Wed Jul 21 00:18:54 2010 -0400

    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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 5fb8332..de1b9f4 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)



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