Bluetooth device: fixed missing busy icon on the call to action.

This commit is contained in:
LemmyCook
2025-09-17 21:58:44 -04:00
parent 47f72d9498
commit 75b7f0fcb0
2 changed files with 2 additions and 1 deletions
@@ -163,7 +163,7 @@ ColumnLayout {
}
return "Connect"
}
icon: (isBusy ? "hourglass-split" : null)
icon: (isBusy ? "busy" : null)
onClicked: {
if (modelData.connected) {
BluetoothService.disconnectDevice(modelData)