1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

animations: dynamic bar/dock animation durations

This commit is contained in:
bbedward
2025-10-16 11:44:05 -04:00
parent 7bf7d0afae
commit 7ea3bd9df9
2 changed files with 6 additions and 6 deletions

View File

@@ -413,14 +413,14 @@ Item {
Behavior on x {
NumberAnimation {
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}
Behavior on y {
NumberAnimation {
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}

View File

@@ -282,14 +282,14 @@ Variants {
Behavior on height {
NumberAnimation {
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}
Behavior on width {
NumberAnimation {
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}
@@ -325,7 +325,7 @@ Variants {
Behavior on x {
NumberAnimation {
id: slideXAnimation
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}
@@ -333,7 +333,7 @@ Variants {
Behavior on y {
NumberAnimation {
id: slideYAnimation
duration: 200
duration: Theme.shortDuration
easing.type: Easing.OutCubic
}
}