diff --git a/src/co/aospa/systemui/qs/tiles/dialog/BluetoothDialog.java b/src/co/aospa/systemui/qs/tiles/dialog/BluetoothDialog.java index b874cbd..977fff8 100644 --- a/src/co/aospa/systemui/qs/tiles/dialog/BluetoothDialog.java +++ b/src/co/aospa/systemui/qs/tiles/dialog/BluetoothDialog.java @@ -279,7 +279,10 @@ public class BluetoothDialog extends SystemUIDialog implements Window.Callback { if (devices == null) return null; if (devices.size() <= 1) return devices; Collection sorted = new ArrayList<>(); - devices.stream().sorted(new BtDeviceComparator()).forEach(sorted::add); + devices.stream().sorted(new BtDeviceComparator()).forEach(device -> { + if (device.getDevice().getBondState() != BluetoothDevice.BOND_NONE) + sorted.add(device); + }); return sorted; }