From ddc04069a3df7c815d2304ac3a92086ce6b6ff1f Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 8 Oct 2025 22:21:48 -0400 Subject: [PATCH] startupfeedback: Revert to original animation --- .../qml/components/StartupFeedbackWindows.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/mobileshell/qml/components/StartupFeedbackWindows.qml b/components/mobileshell/qml/components/StartupFeedbackWindows.qml index 02f2b14b..025ea763 100644 --- a/components/mobileshell/qml/components/StartupFeedbackWindows.qml +++ b/components/mobileshell/qml/components/StartupFeedbackWindows.qml @@ -78,35 +78,35 @@ Item { ParallelAnimation { id: parallelAnim - property real animationDuration: Kirigami.Units.longDuration + property real animationDuration: Kirigami.Units.longDuration + Kirigami.Units.shortDuration ScaleAnimator { target: background from: background.scale to: 1 duration: parallelAnim.animationDuration - easing.type: Easing.InOutQuad + easing.type: Easing.OutCubic } ScaleAnimator { target: iconParent from: iconParent.scale to: 1 duration: parallelAnim.animationDuration - easing.type: Easing.InOutQuad + easing.type: Easing.OutCubic } XAnimator { target: backgroundParent from: backgroundParent.x to: 0 duration: parallelAnim.animationDuration - easing.type: Easing.InOutQuad + easing.type: Easing.OutCubic } YAnimator { target: backgroundParent from: backgroundParent.y to: 0 duration: parallelAnim.animationDuration - easing.type: Easing.InOutQuad + easing.type: Easing.OutCubic } }