From 3148dc62a0f39e7d37e18e8d3de42294796ed03a Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Thu, 7 Aug 2025 19:51:24 +0200 Subject: [PATCH] Fix NotificationPopup.qml --- Widgets/Notification/NotificationPopup.qml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Widgets/Notification/NotificationPopup.qml b/Widgets/Notification/NotificationPopup.qml index a89b9484..761fd4ff 100644 --- a/Widgets/Notification/NotificationPopup.qml +++ b/Widgets/Notification/NotificationPopup.qml @@ -340,19 +340,22 @@ Item { } } + Timer { + id: appearTimer + interval: 10 + repeat: false + onTriggered: { + appearAnimation.start(); + } + } + Component.onCompleted: { if (!appeared) { opacity = 0; height = 0; x = width; // Small delay to ensure contentRow has proper height - Timer { - interval: 10 - repeat: false - onTriggered: { - appearAnimation.start(); - } - } + appearTimer.start(); for (let i = 0; i < notificationModel.count; i++) { if (notificationModel.get(i).id === notificationDelegate.id) { var oldItem = notificationModel.get(i);