diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-28 21:48:06 +0800 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-28 21:48:06 +0800 |
| commit | d48cd777f7c54f64e98a46cb73ddd35787e707b3 (patch) | |
| tree | 09a55b2da74a11ec6bbefbcf2ed40576154c0a14 /modules/session | |
| parent | drawers: better show/hide anims (diff) | |
| download | caelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.tar.gz caelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.tar.bz2 caelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.zip | |
drawers: change anim durations
Diffstat (limited to 'modules/session')
| -rw-r--r-- | modules/session/Wrapper.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/session/Wrapper.qml b/modules/session/Wrapper.qml index 2904db6..d92e22c 100644 --- a/modules/session/Wrapper.qml +++ b/modules/session/Wrapper.qml @@ -29,7 +29,7 @@ Item { NumberAnimation { target: root property: "implicitWidth" - duration: Appearance.anim.durations.normal + duration: Appearance.anim.durations.expressiveFastSpatial easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.anim.curves.expressiveFastSpatial } @@ -41,7 +41,7 @@ Item { NumberAnimation { target: root property: "implicitWidth" - duration: Appearance.anim.durations.normal + duration: root.visibilities.osd ? Appearance.anim.durations.expressiveFastSpatial : Appearance.anim.durations.normal easing.type: Easing.BezierSpline easing.bezierCurve: root.visibilities.osd ? Appearance.anim.curves.expressiveFastSpatial : Appearance.anim.curves.emphasized } |