From 7184800761004c31038233b90e5a90b6049f7cf9 Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Thu, 22 Nov 2018 17:52:44 -0800 Subject: [PATCH] settings: add missing deviceConnect to paired list 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 --- app/bluetooth/Bluetooth.qml | 1 + 1 file changed, 1 insertion(+) 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) -- 2.16.6