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)