From 18c264a85e02c6c2d963e13d132283a7d9c97593 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Thu, 13 Nov 2025 23:44:21 +0100 Subject: [PATCH] make menu fade anim not arbitrary --- .../modules/common/widgets/StyledComboBox.qml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml index 8775715bb..5db02e448 100644 --- a/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml +++ b/dots/.config/quickshell/ii/modules/common/widgets/StyledComboBox.qml @@ -155,22 +155,22 @@ ComboBox { padding: 8 enter: Transition { - NumberAnimation { - property: "opacity" - from: 0 + PropertyAnimation { + properties: "opacity" to: 1 - duration: 150 - easing.type: Easing.OutCubic + duration: Appearance.animation.elementMoveFast.duration + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve } } exit: Transition { - NumberAnimation { - property: "opacity" - from: 1 + PropertyAnimation { + properties: "opacity" to: 0 - duration: 100 - easing.type: Easing.InCubic + duration: Appearance.animation.elementMoveFast.duration + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.animation.elementMoveFast.bezierCurve } }