From 128808a56dbdb2024c0a7d6571c7d4849f4ace33 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 30 Oct 2025 00:03:31 +0100 Subject: [PATCH] styledswitch: fix wrong easing type --- .../quickshell/ii/modules/common/widgets/StyledSwitch.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml index 871ce550f..56c1425d9 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledSwitch.qml @@ -47,21 +47,21 @@ Switch { Behavior on anchors.leftMargin { NumberAnimation { duration: Appearance.animationCurves.expressiveFastSpatialDuration - easing.type: Easing.BezierCurve + easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.animationCurves.expressiveFastSpatial } } Behavior on width { NumberAnimation { duration: Appearance.animationCurves.expressiveFastSpatialDuration - easing.type: Easing.BezierCurve + easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.animationCurves.expressiveFastSpatial } } Behavior on height { NumberAnimation { duration: Appearance.animationCurves.expressiveFastSpatialDuration - easing.type: Easing.BezierCurve + easing.type: Easing.BezierSpline easing.bezierCurve: Appearance.animationCurves.expressiveFastSpatial } }