diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-17 08:13:44 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-17 08:13:44 -0500 |
| commit | 8c84f670e6d47f2c07f51c9bdfdf77a0e2b89b77 (patch) | |
| tree | a7fd8f9ebd04ca1a8907ab9c6a8910ac97ad96d4 /modules/controlcenter/bluetooth | |
| parent | controlcenter: corrected scrolling in bluetooth details while selected (diff) | |
| download | caelestia-shell-8c84f670e6d47f2c07f51c9bdfdf77a0e2b89b77.tar.gz caelestia-shell-8c84f670e6d47f2c07f51c9bdfdf77a0e2b89b77.tar.bz2 caelestia-shell-8c84f670e6d47f2c07f51c9bdfdf77a0e2b89b77.zip | |
controlcenter: corrected null anchor warn
Diffstat (limited to 'modules/controlcenter/bluetooth')
| -rw-r--r-- | modules/controlcenter/bluetooth/DeviceList.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/controlcenter/bluetooth/DeviceList.qml b/modules/controlcenter/bluetooth/DeviceList.qml index 8bf5daa..db1656b 100644 --- a/modules/controlcenter/bluetooth/DeviceList.qml +++ b/modules/controlcenter/bluetooth/DeviceList.qml @@ -166,8 +166,8 @@ ColumnLayout { readonly property bool loading: modelData.state === BluetoothDeviceState.Connecting || modelData.state === BluetoothDeviceState.Disconnecting readonly property bool connected: modelData.state === BluetoothDeviceState.Connected - anchors.left: parent.left - anchors.right: parent.right + anchors.left: view.contentItem.left + anchors.right: view.contentItem.right implicitHeight: deviceInner.implicitHeight + Appearance.padding.normal * 2 color: Qt.alpha(Colours.tPalette.m3surfaceContainer, root.session.bt.active === modelData ? Colours.tPalette.m3surfaceContainer.a : 0) |