From 2e54d3556bffc471c7d38ebef425c3211dc7032f Mon Sep 17 00:00:00 2001 From: Sho Date: Sun, 2 Aug 2026 16:20:39 +0900 Subject: [PATCH] style(lockscreen): make deletion animation a clean inverse fade-out with scale down --- quickshell/modules/lockscreen/LockscreenContent.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickshell/modules/lockscreen/LockscreenContent.qml b/quickshell/modules/lockscreen/LockscreenContent.qml index 108a531..d4bb4f1 100644 --- a/quickshell/modules/lockscreen/LockscreenContent.qml +++ b/quickshell/modules/lockscreen/LockscreenContent.qml @@ -302,8 +302,8 @@ Item { remove: Transition { ParallelAnimation { - NumberAnimation { property: "scale"; to: 0.0; duration: 180; easing.type: Easing.InBack } - NumberAnimation { property: "opacity"; to: 0.0; duration: 150; easing.type: Easing.OutCubic } + NumberAnimation { property: "scale"; from: 1.0; to: 0.1; duration: 200; easing.type: Easing.InCubic } + NumberAnimation { property: "opacity"; from: 1.0; to: 0.0; duration: 200; easing.type: Easing.OutCubic } } }