messageTray: Simplify code
If notificationRemoved, then mustClose is true, so we don't need to double-check for this.
This commit is contained in:
parent
da4238ec68
commit
143dfb6246
@ -2373,7 +2373,6 @@ const MessageTray = new Lang.Class({
|
||||
this._showNotification();
|
||||
}
|
||||
} else if (this._notificationState == State.SHOWN) {
|
||||
let pinned = this._pointerInNotification && !this._notificationRemoved;
|
||||
let expired = (this._userActiveWhileNotificationShown &&
|
||||
this._notificationTimeoutId == 0 &&
|
||||
!(this._notification.urgency == Urgency.CRITICAL) &&
|
||||
@ -2384,9 +2383,9 @@ const MessageTray = new Lang.Class({
|
||||
if (mustClose) {
|
||||
let animate = hasNotifications && !this._notificationRemoved;
|
||||
this._hideNotification(animate);
|
||||
} else if (pinned && !this._notification.expanded) {
|
||||
} else if (this._pointerInNotification && !this._notification.expanded) {
|
||||
this._expandNotification(false);
|
||||
} else if (pinned) {
|
||||
} else if (this._pointerInNotification) {
|
||||
this._ensureNotificationFocused();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user