animScale config option

This commit is contained in:
Zacharias-Brohn
2025-11-29 11:32:08 +01:00
parent e90abf5620
commit 5134e006b3
7 changed files with 23 additions and 16 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ Item {
property string queuedMode
readonly property bool isDetached: detachedMode.length > 0
property int animLength: 400
property int animLength: MaterialEasing.emphasizedDecelTime
property list<real> animCurve: MaterialEasing.emphasized
function detach(mode: string): void {
@@ -39,7 +39,7 @@ Item {
function close(): void {
hasCurrent = false;
animCurve = MaterialEasing.emphasizedDecel;
animLength = 400;
animLength = MaterialEasing.emphasizedDecelTime;
detachedMode = "";
animCurve = MaterialEasing.emphasized;
}