From 524e2df708e612d1ecdbd7dd3a6be3ac37805b6d Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 28 May 2014 15:02:40 -0400 Subject: [PATCH] messageTray: Don't exit out early if we have a left timeout Otherwise, we won't mark the pointer as hovering on the notification. https://bugzilla.gnome.org/show_bug.cgi?id=731118 --- 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 891bab2a4..948a5b88c 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -2283,7 +2283,6 @@ const MessageTray = new Lang.Class({ this._notificationLeftTimeoutId = 0; this._notificationLeftMouseX = -1; this._notificationLeftMouseY = -1; - return; } if (this._showNotificationMouseX >= 0) { @@ -2301,6 +2300,7 @@ const MessageTray = new Lang.Class({ return; } } + this._pointerInNotification = true; this._updateState(); } else {