fix more bluetooth warning

This commit is contained in:
end-4
2025-08-31 07:54:46 +02:00
parent 53b03af3e1
commit f42f526f93
@@ -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