mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-18 17:15:20 -04:00
feat(bar): add visual indication for connected bluetooth (#2662)
This commit is contained in:
@@ -513,7 +513,7 @@ BasePill {
|
||||
case "vpn":
|
||||
return "vpn_lock";
|
||||
case "bluetooth":
|
||||
return "bluetooth";
|
||||
return BluetoothService.connected ? "bluetooth_connected" : "bluetooth";
|
||||
case "battery":
|
||||
return Theme.getBatteryIcon(BatteryService.batteryLevel, BatteryService.isCharging, BatteryService.batteryAvailable);
|
||||
case "printer":
|
||||
@@ -698,7 +698,7 @@ BasePill {
|
||||
case "vpn":
|
||||
return "vpn_lock";
|
||||
case "bluetooth":
|
||||
return "bluetooth";
|
||||
return BluetoothService.connected ? "bluetooth_connected" : "bluetooth";
|
||||
case "battery":
|
||||
return Theme.getBatteryIcon(BatteryService.batteryLevel, BatteryService.isCharging, BatteryService.batteryAvailable);
|
||||
case "printer":
|
||||
|
||||
Reference in New Issue
Block a user