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

notification: expand/collapse animation adjustment

This commit is contained in:
bbedward
2026-02-12 23:27:34 -05:00
parent 00e6172a68
commit 4fc275bead
4 changed files with 27 additions and 5 deletions

View File

@@ -799,12 +799,12 @@ Singleton {
readonly property int notificationExpandDuration: {
const base = notificationAnimationBaseDuration;
return base === 0 ? 0 : Math.round(base * 1.4);
return base === 0 ? 0 : Math.round(base * 1.0);
}
readonly property int notificationCollapseDuration: {
const base = notificationAnimationBaseDuration;
return base === 0 ? 0 : Math.round(base * 1.1);
return base === 0 ? 0 : Math.round(base * 0.85);
}
readonly property int popoutAnimationDuration: {