messageTray: Fix a regression from 1b13509

It seems this rename somehow got lost in a rebase.
This commit is contained in:
Jasper St. Pierre 2013-04-22 18:42:34 -04:00
parent 8b3b91d78d
commit b5c85eaeca

View File

@ -2208,7 +2208,7 @@ const MessageTray = new Lang.Class({
let notificationExpired = this._notificationTimeoutId == 0 &&
!(this._notification && this._notification.urgency == Urgency.CRITICAL) &&
!(this._notification && this._notification.focused) &&
!this._pointerInTray;
!this._pointerInNotification;
let notificationLockedOut = !Main.sessionMode.hasNotifications && this._notification;
let notificationMustClose = this._notificationRemoved || notificationLockedOut || (notificationExpired && this._userActiveWhileNotificationShown) || this._notificationClosed;
let canShowNotification = notificationsPending && this._trayState == State.HIDDEN;