diff --git a/.config/quickshell/ii/modules/sidebarRight/bluetoothDevices/BluetoothDialog.qml b/.config/quickshell/ii/modules/sidebarRight/bluetoothDevices/BluetoothDialog.qml index 2650f6d69..b9ddcaa3a 100644 --- a/.config/quickshell/ii/modules/sidebarRight/bluetoothDevices/BluetoothDialog.qml +++ b/.config/quickshell/ii/modules/sidebarRight/bluetoothDevices/BluetoothDialog.qml @@ -20,10 +20,10 @@ WindowDialog { text: Translation.tr("Bluetooth devices") } WindowDialogSeparator { - visible: !Bluetooth.defaultAdapter.discovering + visible: !(Bluetooth.defaultAdapter?.discovering ?? false) } StyledIndeterminateProgressBar { - visible: Bluetooth.defaultAdapter.discovering + visible: Bluetooth.defaultAdapter?.discovering ?? false Layout.fillWidth: true Layout.topMargin: -8 Layout.bottomMargin: -8