From 85ec32336bb4b2e017c2530b02d5d00e7a80873b Mon Sep 17 00:00:00 2001 From: ItsLemmy Date: Sat, 22 Nov 2025 07:49:01 -0500 Subject: [PATCH] Panels: allow width animations with horizontal bars. --- Modules/MainScreen/PanelPlaceholder.qml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Modules/MainScreen/PanelPlaceholder.qml b/Modules/MainScreen/PanelPlaceholder.qml index fedc4934..6f4f1de1 100644 --- a/Modules/MainScreen/PanelPlaceholder.qml +++ b/Modules/MainScreen/PanelPlaceholder.qml @@ -603,11 +603,7 @@ Item { Behavior on width { NumberAnimation { - duration: { - if (!panelBackground.shouldAnimateWidth) - return 0; - return root.isClosing ? Style.animationFast : Style.animationNormal; - } + duration: root.isClosing ? Style.animationFast : Style.animationNormal easing.type: Easing.BezierSpline easing.bezierCurve: panelBackground.bezierCurve }