summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-28 21:48:06 +0800
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-28 21:48:06 +0800
commitd48cd777f7c54f64e98a46cb73ddd35787e707b3 (patch)
tree09a55b2da74a11ec6bbefbcf2ed40576154c0a14 /modules
parentdrawers: better show/hide anims (diff)
downloadcaelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.tar.gz
caelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.tar.bz2
caelestia-shell-d48cd777f7c54f64e98a46cb73ddd35787e707b3.zip
drawers: change anim durations
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/Wrapper.qml2
-rw-r--r--modules/launcher/Wrapper.qml2
-rw-r--r--modules/notifications/Content.qml2
-rw-r--r--modules/notifications/Wrapper.qml2
-rw-r--r--modules/osd/Wrapper.qml2
-rw-r--r--modules/session/Wrapper.qml4
6 files changed, 7 insertions, 7 deletions
diff --git a/modules/dashboard/Wrapper.qml b/modules/dashboard/Wrapper.qml
index 684b409..8d3d2f7 100644
--- a/modules/dashboard/Wrapper.qml
+++ b/modules/dashboard/Wrapper.qml
@@ -28,7 +28,7 @@ Item {
NumberAnimation {
target: root
property: "implicitHeight"
- duration: Appearance.anim.durations.normal
+ duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
}
diff --git a/modules/launcher/Wrapper.qml b/modules/launcher/Wrapper.qml
index 4507032..27f2150 100644
--- a/modules/launcher/Wrapper.qml
+++ b/modules/launcher/Wrapper.qml
@@ -28,7 +28,7 @@ Item {
NumberAnimation {
target: root
property: "implicitHeight"
- duration: Appearance.anim.durations.normal
+ duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
}
diff --git a/modules/notifications/Content.qml b/modules/notifications/Content.qml
index 6e5e095..5cd566e 100644
--- a/modules/notifications/Content.qml
+++ b/modules/notifications/Content.qml
@@ -100,7 +100,7 @@ Item {
}
component Anim: NumberAnimation {
- duration: Appearance.anim.durations.normal
+ duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
}
diff --git a/modules/notifications/Wrapper.qml b/modules/notifications/Wrapper.qml
index 24aebd9..4153b6b 100644
--- a/modules/notifications/Wrapper.qml
+++ b/modules/notifications/Wrapper.qml
@@ -24,7 +24,7 @@ Item {
NumberAnimation {
target: root
property: "implicitHeight"
- duration: Appearance.anim.durations.normal
+ duration: Appearance.anim.durations.expressiveDefaultSpatial
easing.type: Easing.BezierSpline
easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial
}
diff --git a/modules/osd/Wrapper.qml b/modules/osd/Wrapper.qml
index 689f58c..d2564ef 100644
--- a/modules/osd/Wrapper.qml
+++ b/modules/osd/Wrapper.qml
@@ -30,7 +30,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
}
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
}