summaryrefslogtreecommitdiff
path: root/components/filedialog
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-24 16:51:09 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-24 16:51:09 +1000
commit486f9d2e2f260d18883991f4a6981a2cc0d15526 (patch)
tree9164de4b4019827ee1bda86a54a172c26e7ced85 /components/filedialog
parentinternal: add anim component (diff)
downloadcaelestia-shell-486f9d2e2f260d18883991f4a6981a2cc0d15526.tar.gz
caelestia-shell-486f9d2e2f260d18883991f4a6981a2cc0d15526.tar.bz2
caelestia-shell-486f9d2e2f260d18883991f4a6981a2cc0d15526.zip
internal: add canim component
Diffstat (limited to 'components/filedialog')
-rw-r--r--components/filedialog/CurrentItem.qml6
-rw-r--r--components/filedialog/FileDialog.qml8
2 files changed, 3 insertions, 11 deletions
diff --git a/components/filedialog/CurrentItem.qml b/components/filedialog/CurrentItem.qml
index 9f8ffac..bb4d55e 100644
--- a/components/filedialog/CurrentItem.qml
+++ b/components/filedialog/CurrentItem.qml
@@ -62,11 +62,7 @@ Item {
}
Behavior on fillColor {
- ColorAnimation {
- duration: Appearance.anim.durations.normal
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.standard
- }
+ CAnim {}
}
}
}
diff --git a/components/filedialog/FileDialog.qml b/components/filedialog/FileDialog.qml
index 8b0b331..0deff32 100644
--- a/components/filedialog/FileDialog.qml
+++ b/components/filedialog/FileDialog.qml
@@ -1,7 +1,7 @@
pragma ComponentBehavior: Bound
+import qs.components
import qs.services
-import qs.config
import Quickshell
import QtQuick
import QtQuick.Layouts
@@ -96,11 +96,7 @@ LazyLoader {
}
Behavior on color {
- ColorAnimation {
- duration: Appearance.anim.durations.normal
- easing.type: Easing.BezierSpline
- easing.bezierCurve: Appearance.anim.curves.standard
- }
+ CAnim {}
}
}
}