diff --git a/quickshell/Modals/Common/DankModal.qml b/quickshell/Modals/Common/DankModal.qml index 25156916..61af958f 100644 --- a/quickshell/Modals/Common/DankModal.qml +++ b/quickshell/Modals/Common/DankModal.qml @@ -132,7 +132,7 @@ Item { Timer { id: closeTimer - interval: animationDuration + 120 + interval: animationDuration + 50 onTriggered: { if (shouldBeVisible) return; diff --git a/quickshell/Modals/DankLauncherV2/DankLauncherV2Modal.qml b/quickshell/Modals/DankLauncherV2/DankLauncherV2Modal.qml index 319de46f..71481ffa 100644 --- a/quickshell/Modals/DankLauncherV2/DankLauncherV2Modal.qml +++ b/quickshell/Modals/DankLauncherV2/DankLauncherV2Modal.qml @@ -312,7 +312,7 @@ Item { NumberAnimation { duration: Theme.modalAnimationDuration easing.type: Easing.BezierSpline - easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveFastSpatial : Theme.expressiveCurves.emphasized + easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveDefaultSpatial : Theme.expressiveCurves.emphasized } } } @@ -348,7 +348,7 @@ Item { NumberAnimation { duration: Theme.modalAnimationDuration easing.type: Easing.BezierSpline - easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveFastSpatial : Theme.expressiveCurves.standardAccel + easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveDefaultSpatial : Theme.expressiveCurves.emphasized } } @@ -356,7 +356,7 @@ Item { NumberAnimation { duration: Theme.modalAnimationDuration easing.type: Easing.BezierSpline - easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveFastSpatial : Theme.expressiveCurves.standardAccel + easing.bezierCurve: contentVisible ? Theme.expressiveCurves.expressiveDefaultSpatial : Theme.expressiveCurves.emphasized } } diff --git a/quickshell/Modules/Greetd/GreetdMemory.qml b/quickshell/Modules/Greetd/GreetdMemory.qml index 1fd12000..c263fc56 100644 --- a/quickshell/Modules/Greetd/GreetdMemory.qml +++ b/quickshell/Modules/Greetd/GreetdMemory.qml @@ -75,14 +75,11 @@ Singleton { FileView { id: memoryFileView path: root.memoryFile - blockLoading: false + blockLoading: true blockWrites: false atomicWrites: true watchChanges: false printErrors: false - onLoaded: { - parseMemory(memoryFileView.text()); - } } FileView { diff --git a/quickshell/Modules/Settings/TypographyMotionTab.qml b/quickshell/Modules/Settings/TypographyMotionTab.qml index 9dd07f8d..45704dfe 100644 --- a/quickshell/Modules/Settings/TypographyMotionTab.qml +++ b/quickshell/Modules/Settings/TypographyMotionTab.qml @@ -322,7 +322,7 @@ Item { text: I18n.tr("Custom Duration") description: I18n.tr("%1 custom animation duration").arg(I18n.tr("Popouts")) minimum: 0 - maximum: 500 + maximum: 2000 value: Theme.popoutAnimationDuration unit: "ms" defaultValue: 150 @@ -402,7 +402,7 @@ Item { text: I18n.tr("Custom Duration") description: I18n.tr("%1 custom animation duration").arg(I18n.tr("Modals")) minimum: 0 - maximum: 500 + maximum: 2000 value: Theme.modalAnimationDuration unit: "ms" defaultValue: 150