From e55c97185a64e1b04ebf3fe0518e1668fa731470 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sat, 30 Aug 2025 12:47:02 -0400 Subject: [PATCH] remove arbiritary height cap --- Modules/ControlCenter/Details/BluetoothCodecSelector.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/ControlCenter/Details/BluetoothCodecSelector.qml b/Modules/ControlCenter/Details/BluetoothCodecSelector.qml index f67427f3..d79e4e8f 100644 --- a/Modules/ControlCenter/Details/BluetoothCodecSelector.qml +++ b/Modules/ControlCenter/Details/BluetoothCodecSelector.qml @@ -120,7 +120,7 @@ Item { id: modalContent anchors.centerIn: parent width: 320 - height: Math.min(contentColumn.implicitHeight + Theme.spacingL * 2, 400) + height: contentColumn.implicitHeight + Theme.spacingL * 2 radius: Theme.cornerRadius color: Theme.surfaceContainer border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)