From a7b5134820c2f56958bf969aed0f748c77e922ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 25 Oct 2012 22:07:12 +0200 Subject: [PATCH] messageTray: Hide notification close button immediately on click Having the close button move away from under the pointer after clicking it is confusing and distracts from the main transition, which is hiding the notification. Just hide it immediately. https://bugzilla.gnome.org/show_bug.cgi?id=682237 --- js/ui/messageTray.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 93ec828f4..89cbf94d0 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1591,6 +1591,7 @@ const MessageTray = new Lang.Class({ _onCloseClicked: function() { if (this._notificationState == State.SHOWN) { + this._closeButton.hide(); this._notificationClosed = true; this._updateState(); this._notificationClosed = false;