1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-04 21:02:06 -04:00

notifications: cap max anim speed in popout

This commit is contained in:
bbedward
2026-02-05 15:17:17 -05:00
parent 3d05c34673
commit 8944762c76
4 changed files with 21 additions and 7 deletions

View File

@@ -19,18 +19,16 @@ Rectangle {
Behavior on height {
NumberAnimation {
duration: Anims.durShort
easing.type: Easing.BezierSpline
easing.bezierCurve: Anims.emphasized
duration: Theme.shortDuration
easing.type: Theme.emphasizedEasing
}
}
opacity: expanded ? 1 : 0
Behavior on opacity {
NumberAnimation {
duration: Anims.durShort
easing.type: Easing.BezierSpline
easing.bezierCurve: Anims.emphasized
duration: Theme.shortDuration
easing.type: Theme.emphasizedEasing
}
}