mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Show BT device names first
Show them left of address (so they are in the user's view) rather than on the right. Signed-off-by: Robert C. Helling <helling@atdotde.de>
This commit is contained in:
parent
127abec62c
commit
1c223b09c3
2 changed files with 2 additions and 2 deletions
|
@ -195,7 +195,7 @@ void BTDiscovery::btDeviceDiscoveredMain(const btPairedDevice &device)
|
|||
btVP.vendorIdx = vendorList.indexOf(vendor);
|
||||
btVP.productIdx = productList[vendor].indexOf(newDevice);
|
||||
btDCs << btVP;
|
||||
connectionListModel.addAddress(device.address + " (" + newDevice + ")");
|
||||
connectionListModel.addAddress(newDevice + " " + device.address);
|
||||
return;
|
||||
}
|
||||
connectionListModel.addAddress(device.address);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue