diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-11-22 17:52:44 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-11-22 18:00:57 -0800 |
commit | 7184800761004c31038233b90e5a90b6049f7cf9 (patch) | |
tree | 44ef70f22f054f73aee785f951bd138c6c3e7af4 /app | |
parent | 61147591cf2069c3890e96691b2e04f609dd7cbf (diff) |
settings: add missing deviceConnect to paired listguppy_6.99.1guppy/6.99.16.99.1
Need deviceConnect to be set after pairing of device otherwise the
"Connect" button will never be displayed.
Bug-AGL: SPEC-1630
Change-Id: Ibd6c05e66b28490b650bfb3da7aaebe7aa29ad24
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/bluetooth/Bluetooth.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/bluetooth/Bluetooth.qml b/app/bluetooth/Bluetooth.qml index 308828b..de60edc 100644 --- a/app/bluetooth/Bluetooth.qml +++ b/app/bluetooth/Bluetooth.qml @@ -350,6 +350,7 @@ SettingPage { deviceAddress: btDeviceList.get(i).deviceAddress, deviceName: btDeviceList.get(i).deviceName, devicePairable: btDeviceList.get(i).devicePairable, + deviceConnect: btDeviceList.get(i).deviceConnect, }) pairedDeviceCount = pairedDeviceCount + 1 btDeviceList.remove(i, 1) |