Index: sources/gui/qml/pages/settings/SettingsBluetoothCuff.qml =================================================================== diff -u -r2b90169339a65399c03c31d1a40adffee87e7719 -rbefa8e7e7667c4aa5193022bd80e9f52c2374ad0 --- sources/gui/qml/pages/settings/SettingsBluetoothCuff.qml (.../SettingsBluetoothCuff.qml) (revision 2b90169339a65399c03c31d1a40adffee87e7719) +++ sources/gui/qml/pages/settings/SettingsBluetoothCuff.qml (.../SettingsBluetoothCuff.qml) (revision befa8e7e7667c4aa5193022bd80e9f52c2374ad0) @@ -79,7 +79,7 @@ anchors.leftMargin: 5 } onClicked: { - vBluetooth.didDeviceSelect(addr, name); + vBluetooth.didDeviceSelect(addr, name) } ProgressCircle { minimum : 0 @@ -117,6 +117,7 @@ vDevice.doInitBluetoothPairedReset() } } + Connections { target: vDevice onBluetoothPairedResetChanged : { // DEBUG: console.debug("bluetoothPairedReset", vbluetoothPairedReset, vDevice.accepted, vDevice.reason, vDevice.status) @@ -135,4 +136,7 @@ // done : _delegate.stepDone } notificationText : vBluetooth.notification || vDevice.status + Component.onCompleted : { + vDevice.doInitBluetoothPairedQuery() + } }