Update BluetoothService.qml

This commit is contained in:
Hakan Göksu
2025-12-07 20:47:24 +02:00
committed by GitHub
parent d933172ef4
commit b8ec15a446
+3 -1
View File
@@ -105,7 +105,9 @@ Singleton {
var name = (device.name || device.deviceName || "").toLowerCase();
var icon = (device.icon || "").toLowerCase();
if (icon.includes("controller") || icon.includes("gamepad") || name.includes("controller") || name.includes("gamepad")) {
return "bt-device-gamepad";
}
if (icon.includes("microphone") || name.includes("microphone")) {
return "bt-device-microphone";
}