From 58ac3e09429c5829375bc35cc4a625ef5706061b Mon Sep 17 00:00:00 2001 From: purian23 Date: Sat, 12 Jul 2025 21:43:09 -0400 Subject: [PATCH] Remove duplicate transparency & theme options from the control center display --- Widgets/ControlCenter/ControlCenterPopup.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Widgets/ControlCenter/ControlCenterPopup.qml b/Widgets/ControlCenter/ControlCenterPopup.qml index 3abf3843..1c23683c 100644 --- a/Widgets/ControlCenter/ControlCenterPopup.qml +++ b/Widgets/ControlCenter/ControlCenterPopup.qml @@ -632,7 +632,7 @@ PanelWindow { BluetoothTab { anchors.fill: parent anchors.margins: Theme.spacingM - visible: controlCenterPopup.currentTab === 2 + visible: root.bluetoothAvailable && controlCenterPopup.currentTab === 2 // Bind properties from root bluetoothEnabled: root.bluetoothEnabled @@ -643,7 +643,7 @@ PanelWindow { DisplayTab { anchors.fill: parent anchors.margins: Theme.spacingM - visible: controlCenterPopup.currentTab === 3 + visible: controlCenterPopup.currentTab === (root.bluetoothAvailable ? 3 : 2) } }