messageTray: hide removed notification without tweening
This reflects more accurately what happens when a notification is removed. this._pointerInTray value needs to be set to false in this case.
This commit is contained in:
parent
4a214d8238
commit
f8eab659d9
@ -2117,6 +2117,12 @@ const MessageTray = new Lang.Class({
|
||||
this._notificationExpandedId = 0;
|
||||
}
|
||||
|
||||
if (this._notificationRemoved) {
|
||||
this._notificationBin.y = this.actor.height;
|
||||
this._notificationBin.opacity = 0;
|
||||
this._notificationState = State.HIDDEN;
|
||||
this._hideNotificationCompleted();
|
||||
} else {
|
||||
this._tween(this._notificationBin, '_notificationState', State.HIDDEN,
|
||||
{ y: this.actor.height,
|
||||
opacity: 0,
|
||||
@ -2125,11 +2131,13 @@ const MessageTray = new Lang.Class({
|
||||
onComplete: this._hideNotificationCompleted,
|
||||
onCompleteScope: this
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
_hideNotificationCompleted: function() {
|
||||
this._notificationRemoved = false;
|
||||
this._notificationBin.hide();
|
||||
this._pointerInTray = false;
|
||||
this._notificationBin.child = null;
|
||||
this._notification.collapseCompleted();
|
||||
this._notification.disconnect(this._notificationClickedId);
|
||||
|
Loading…
Reference in New Issue
Block a user