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/osd | |
| 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/osd')
| -rw-r--r-- | modules/osd/Wrapper.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/osd/Wrapper.qml b/modules/osd/Wrapper.qml index 22d5f74..689f58c 100644 --- a/modules/osd/Wrapper.qml +++ b/modules/osd/Wrapper.qml @@ -30,9 +30,9 @@ Item { NumberAnimation { target: root property: "implicitWidth" - 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.expressiveFastSpatial } }, Transition { @@ -44,7 +44,7 @@ Item { property: "implicitWidth" duration: Appearance.anim.durations.normal easing.type: Easing.BezierSpline - easing.bezierCurve: Appearance.anim.curves.emphasizedAccel + easing.bezierCurve: Appearance.anim.curves.emphasized } } ] |