From 7c980f42c9884d04d09edc26a3c8f5ad76cc42bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 30 Nov 2010 17:20:27 +0100 Subject: [PATCH] message-tray: Fix typo At one place, we set State.SHOWNING instead of State.SHOWING. Thanks to Jasper St. Pierre for spotting this. --- 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 e2a4c182d..d2c10e66b 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1659,7 +1659,7 @@ MessageTray.prototype = { this._summaryNotificationBoxPointer.actor.show(); this._adjustNotificationBoxPointerPosition(); - this._summaryNotificationState = State.SHOWNING; + this._summaryNotificationState = State.SHOWING; this._summaryNotificationBoxPointer.animateAppear(Lang.bind(this, function() { this._summaryNotificationState = State.SHOWN; }));