From 75b7f0fcb0801981d6df71dfd245f36b131cce10 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Wed, 17 Sep 2025 21:58:44 -0400 Subject: [PATCH] Bluetooth device: fixed missing busy icon on the call to action. --- Commons/IconsSets/TablerIcons.qml | 1 + Modules/BluetoothPanel/BluetoothDevicesList.qml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Commons/IconsSets/TablerIcons.qml b/Commons/IconsSets/TablerIcons.qml index 66116433..a231363d 100644 --- a/Commons/IconsSets/TablerIcons.qml +++ b/Commons/IconsSets/TablerIcons.qml @@ -26,6 +26,7 @@ Singleton { "search": "search", "warning": "exclamation-circle", "stop": "player-stop-filled", + "busy": "hourglass-empty", "media-pause": "player-pause-filled", "media-play": "player-play-filled", "media-prev": "player-skip-back-filled", diff --git a/Modules/BluetoothPanel/BluetoothDevicesList.qml b/Modules/BluetoothPanel/BluetoothDevicesList.qml index fec1ffd7..7d6c0a4a 100644 --- a/Modules/BluetoothPanel/BluetoothDevicesList.qml +++ b/Modules/BluetoothPanel/BluetoothDevicesList.qml @@ -163,7 +163,7 @@ ColumnLayout { } return "Connect" } - icon: (isBusy ? "hourglass-split" : null) + icon: (isBusy ? "busy" : null) onClicked: { if (modelData.connected) { BluetoothService.disconnectDevice(modelData)