mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Bluetooth device: fixed missing busy icon on the call to action.
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -163,7 +163,7 @@ ColumnLayout {
|
||||
}
|
||||
return "Connect"
|
||||
}
|
||||
icon: (isBusy ? "hourglass-split" : null)
|
||||
icon: (isBusy ? "busy" : null)
|
||||
onClicked: {
|
||||
if (modelData.connected) {
|
||||
BluetoothService.disconnectDevice(modelData)
|
||||
|
||||
Reference in New Issue
Block a user