From 806230ff5254e3a87ba784b13df824f1c1a5dedf Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Tue, 22 Apr 2025 08:10:54 +0200 Subject: [PATCH] notif popup dismiss animation fix --- .../quickshell/modules/common/widgets/NotificationWidget.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/modules/common/widgets/NotificationWidget.qml b/.config/quickshell/modules/common/widgets/NotificationWidget.qml index bef591a93..85da673f0 100644 --- a/.config/quickshell/modules/common/widgets/NotificationWidget.qml +++ b/.config/quickshell/modules/common/widgets/NotificationWidget.qml @@ -78,8 +78,8 @@ Item { notificationBackground.anchors.left = undefined notificationBackground.anchors.right = undefined notificationBackground.anchors.fill = undefined - notificationRowWrapper.x = width - notificationBackground.x = width + notificationRowWrapper.x = width + 5 * 2 // Account for shadow + notificationBackground.x = width + 5 * 2 // Account for shadow destroyTimer1.start() } }