diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-28 15:56:10 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-28 15:56:10 +0800 |
| commit | 016a7c0763313d80feb347242530abfe1a5db640 (patch) | |
| tree | 9dcf434188ebd1efe9e9cd69e9e7ac3a23fc503d /modules/dashboard/Wrapper.qml | |
| parent | dashboard: animate media visualiser colour (diff) | |
| download | caelestia-shell-016a7c0763313d80feb347242530abfe1a5db640.tar.gz caelestia-shell-016a7c0763313d80feb347242530abfe1a5db640.tar.bz2 caelestia-shell-016a7c0763313d80feb347242530abfe1a5db640.zip | |
drawers: better show/hide anims
Use m3 expressive curves
Diffstat (limited to 'modules/dashboard/Wrapper.qml')
| -rw-r--r-- | modules/dashboard/Wrapper.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/dashboard/Wrapper.qml b/modules/dashboard/Wrapper.qml index 56662e7..684b409 100644 --- a/modules/dashboard/Wrapper.qml +++ b/modules/dashboard/Wrapper.qml @@ -28,9 +28,9 @@ Item { NumberAnimation { target: root property: "implicitHeight" - duration: Appearance.anim.durations.large + duration: Appearance.anim.durations.normal easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.emphasizedDecel + easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } }, Transition { @@ -42,7 +42,7 @@ Item { property: "implicitHeight" duration: Appearance.anim.durations.normal easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.emphasizedAccel + easing.bezierCurve: Appearance.anim.curves.emphasized } } ] |