Panels: properly animate height with vertical bar + Bluetooth sizing refinement.

This commit is contained in:
ItsLemmy
2025-11-22 00:33:42 -05:00
parent 9c550af64e
commit 823042b245
2 changed files with 8 additions and 6 deletions
+1 -5
View File
@@ -615,11 +615,7 @@ Item {
Behavior on height {
NumberAnimation {
duration: {
if (!panelBackground.shouldAnimateHeight)
return 0;
return root.isClosing ? Style.animationFast : Style.animationNormal;
}
duration: root.isClosing ? Style.animationFast : Style.animationNormal
easing.type: Easing.BezierSpline
easing.bezierCurve: panelBackground.bezierCurve
}