From 1571171a21bd8199ddb4da948eb59d622257ca80 Mon Sep 17 00:00:00 2001 From: Alessandro Bono Date: Sun, 15 Jan 2023 13:18:26 +0100 Subject: [PATCH] messageTray: Use duration 0 when not animating Instead of using a special branch for the not animate case, just use the same path with duration 0. Since commit ee09c5c85312f571e14abe69bb6674a361c16d65 we are sure that duration 0 is always preserved. In the not animate case, we now call this._updateState(). This was not happening before. Part-of: --- js/ui/messageTray.js | 40 +++++++++++++++++----------------------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index be9dcbe90..73a9ed9f6 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1356,29 +1356,23 @@ export const MessageTray = GObject.registerClass({ this._resetNotificationLeftTimeout(); this._bannerBin.remove_all_transitions(); - if (animate) { - this._notificationState = State.HIDING; - this._bannerBin.ease({ - opacity: 0, - duration: ANIMATION_TIME, - mode: Clutter.AnimationMode.EASE_OUT_BACK, - }); - this._bannerBin.ease({ - y: -this._bannerBin.height, - duration: ANIMATION_TIME, - mode: Clutter.AnimationMode.EASE_OUT_BACK, - onComplete: () => { - this._notificationState = State.HIDDEN; - this._hideNotificationCompleted(); - this._updateState(); - }, - }); - } else { - this._bannerBin.y = -this._bannerBin.height; - this._bannerBin.opacity = 0; - this._notificationState = State.HIDDEN; - this._hideNotificationCompleted(); - } + const duration = animate ? ANIMATION_TIME : 0; + this._notificationState = State.HIDING; + this._bannerBin.ease({ + opacity: 0, + duration, + mode: Clutter.AnimationMode.EASE_OUT_BACK, + }); + this._bannerBin.ease({ + y: -this._bannerBin.height, + duration, + mode: Clutter.AnimationMode.EASE_OUT_BACK, + onComplete: () => { + this._notificationState = State.HIDDEN; + this._hideNotificationCompleted(); + this._updateState(); + }, + }); } _hideNotificationCompleted() {