diff --git a/qml/ControlCenter.qml b/qml/ControlCenter.qml index 77f1db5..7287654 100644 --- a/qml/ControlCenter.qml +++ b/qml/ControlCenter.qml @@ -202,7 +202,7 @@ ControlCenterDialog { CardItem { id: wirelessItem Layout.fillHeight: true - Layout.fillWidth: true + Layout.preferredWidth: 120 icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/network-wireless-connected-100.svg" : "qrc:/images/light/network-wireless-connected-100.svg" visible: enabledConnections.wirelessHwEnabled @@ -217,7 +217,7 @@ ControlCenterDialog { CardItem { id: bluetoothItem Layout.fillHeight: true - Layout.fillWidth: true + Layout.preferredWidth: 120 icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/bluetooth-symbolic.svg" : "qrc:/images/light/bluetooth-symbolic.svg" checked: !control.bluetoothDisConnected @@ -230,7 +230,7 @@ ControlCenterDialog { CardItem { id: darkModeItem Layout.fillHeight: true - Layout.fillWidth: true + Layout.preferredWidth: 120 icon: FishUI.Theme.darkMode || checked ? "qrc:/images/dark/dark-mode.svg" : "qrc:/images/light/dark-mode.svg" checked: FishUI.Theme.darkMode @@ -238,6 +238,10 @@ ControlCenterDialog { text: FishUI.Theme.darkMode ? qsTr("On") : qsTr("Off") onClicked: appearance.switchDarkMode(!FishUI.Theme.darkMode) } + + Item { + Layout.fillWidth: true + } } }