[gnome-shell] MessageTray: fix popping up after there were modals



commit 3b70094151f634d80fb949cbc089fb62c072f5ee
Author: Giovanni Campagna <gcampagna src gnome org>
Date:   Tue Nov 20 19:53:22 2012 +0100

    MessageTray: fix popping up after there were modals
    
    Open a modal dialog, try to open the message tray -> no effect, the message
    tray is blocked by the dialog.
    Close the dialog, try to open the message tray by pointer -> still
    no effect, because the old timeout id was not cleared the first time,
    so the dwell callback thinks the tray is about to open.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=688750

 js/ui/messageTray.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js
index 483b71d..31283e6 100644
--- a/js/ui/messageTray.js
+++ b/js/ui/messageTray.js
@@ -1606,6 +1606,8 @@ const MessageTray = new Lang.Class({
     },
 
     _trayDwellTimeout: function() {
+        this._trayDwellTimeoutId = 0;
+
         if (Main.modalCount > 0)
             return false;
 
@@ -1616,8 +1618,6 @@ const MessageTray = new Lang.Class({
         if (currentUserTime != this._trayDwellUserTime)
             return false;
 
-        this._trayDwellTimeoutId = 0;
-
         this._traySummoned = true;
         this._updateState();
 



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