From 833edf301f89f91390f9ea6228c90107c057c352 Mon Sep 17 00:00:00 2001 From: fredcw <58893963+fredcw@users.noreply.github.com> Date: Wed, 17 Dec 2025 01:56:19 +0000 Subject: [PATCH] messageTray.js: Check for pending notifications after showing a notification --- js/ui/messageTray.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 7d224852c4..13ddb612b7 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1072,7 +1072,10 @@ MessageTray.prototype = { opacity: 0, duration: ANIMATION_TIME, mode: Clutter.AnimationMode.EASE_OUT_QUAD, - onComplete: () => this._hideNotificationCompleted() + onComplete: () => { + this._hideNotificationCompleted(); + this._updateState(); + } }); },