diff options
Diffstat (limited to 'core/btdiscovery.cpp')
-rw-r--r-- | core/btdiscovery.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 298c0408c..909c55b23 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -274,8 +274,11 @@ void BTDiscovery::btDeviceDiscoveredMain(const btPairedDevice &device) return; } // Do we want only devices we recognize as dive computers? - if (m_showNonDiveComputers) - connectionListModel.addAddress(device.address); + if (m_showNonDiveComputers) { + if (!newDevice.isEmpty()) + newDevice += " "; + connectionListModel.addAddress(newDevice + device.address); + } qDebug() << "Not recognized as dive computer"; } |