From 9d7f0c48cebec02aaf2ca780b89a763ce91f8624 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 28 Jan 2026 19:21:44 +1100 Subject: internal: format --- modules/controlcenter/components/PaneTransition.qml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'modules/controlcenter/components/PaneTransition.qml') diff --git a/modules/controlcenter/components/PaneTransition.qml b/modules/controlcenter/components/PaneTransition.qml index d1814b5..5d80dbe 100644 --- a/modules/controlcenter/components/PaneTransition.qml +++ b/modules/controlcenter/components/PaneTransition.qml @@ -8,12 +8,12 @@ SequentialAnimation { required property Item target property list propertyActions - + property real scaleFrom: 1.0 property real scaleTo: 0.8 property real opacityFrom: 1.0 property real opacityTo: 0.0 - + ParallelAnimation { NumberAnimation { target: root.target @@ -24,7 +24,7 @@ SequentialAnimation { easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.anim.curves.standardAccel } - + NumberAnimation { target: root.target property: "scale" @@ -35,7 +35,7 @@ SequentialAnimation { easing.bezierCurve: Appearance.anim.curves.standardAccel } } - + ScriptAction { script: { for (let i = 0; i < root.propertyActions.length; i++) { @@ -46,7 +46,7 @@ SequentialAnimation { } } } - + ParallelAnimation { NumberAnimation { target: root.target @@ -57,7 +57,7 @@ SequentialAnimation { easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.anim.curves.standardDecel } - + NumberAnimation { target: root.target property: "scale" @@ -69,4 +69,3 @@ SequentialAnimation { } } } - -- cgit v1.2.3-freya