1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-07 06:12:08 -04:00

animations: tweak list view transitions to not animate X

This commit is contained in:
bbedward
2026-02-08 22:10:51 -05:00
parent c86999f389
commit a02b0c0c3c

View File

@@ -1,50 +1,36 @@
pragma Singleton
pragma ComponentBehavior: Bound
import QtQuick
import Quickshell
import qs.Common
// Reusable ListView/GridView transitions
QtObject {
Singleton {
id: root
readonly property Transition add: Transition {
ParallelAnimation {
DankAnim {
property: "opacity"
from: 0
to: 1
duration: Theme.expressiveDurations.expressiveDefaultSpatial
easing.bezierCurve: Theme.expressiveCurves.emphasizedDecel
}
DankAnim {
property: "scale"
from: 0.92
to: 1
duration: Theme.expressiveDurations.expressiveDefaultSpatial
easing.bezierCurve: Theme.expressiveCurves.emphasizedDecel
}
DankAnim {
property: "opacity"
from: 0
to: 1
duration: Theme.expressiveDurations.expressiveDefaultSpatial
easing.bezierCurve: Theme.expressiveCurves.emphasizedDecel
}
}
readonly property Transition remove: Transition {
ParallelAnimation {
DankAnim {
property: "opacity"
to: 0
duration: Theme.expressiveDurations.fast
easing.bezierCurve: Theme.expressiveCurves.emphasizedAccel
}
DankAnim {
property: "scale"
to: 0.92
duration: Theme.expressiveDurations.fast
easing.bezierCurve: Theme.expressiveCurves.emphasizedAccel
}
DankAnim {
property: "opacity"
to: 0
duration: Theme.expressiveDurations.fast
easing.bezierCurve: Theme.expressiveCurves.emphasizedAccel
}
}
readonly property Transition displaced: Transition {
DankAnim {
properties: "x,y"
property: "y"
duration: Theme.expressiveDurations.expressiveDefaultSpatial
easing.bezierCurve: Theme.expressiveCurves.expressiveDefaultSpatial
}
@@ -52,7 +38,7 @@ QtObject {
readonly property Transition move: Transition {
DankAnim {
properties: "x,y"
property: "y"
duration: Theme.expressiveDurations.expressiveDefaultSpatial
easing.bezierCurve: Theme.expressiveCurves.standard
}