Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -r015a7cea7842d589a11325a989436be342b801ef -rc296d233f68d978d924697f424425ee58493b435 --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 015a7cea7842d589a11325a989436be342b801ef) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision c296d233f68d978d924697f424425ee58493b435) @@ -48,6 +48,10 @@ regExp:/^(([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))\.){3}([01]?[0-9]?[0-9]|2([0-4][0-9]|5[0-5]))$/ } + onVisibleChanged: { + if ( visible ) vAdjustmentVersions .doAdjustment() + } + Column { id : _column spacing : _root.spacing y : _root.topMargin @@ -143,18 +147,15 @@ let mHasSerials = ( _serial_HD != "" && _serial_DG != "") if ( ! mHasSerials ) { _root.notificationText = qsTr("No device Serial" ); return } - vCloudSync .doRegister () } // start device registration } - // Connections { target: vCloudSync - // function onselfTestConsumables_primeEntered ( vValue ) {/* _preTreatmentConsumablesSelfTest.checkList.setItem( 0, vValue )*/ } - // function onSelfTestConsumables_biCarbPumpEntered ( vValue ) { _preTreatmentConsumablesSelfTest.checkList.setItem( 0, vValue )} - // function onSelfTestConsumables_biCarbPumpEntered ( vValue ) { _preTreatmentConsumablesSelfTest.checkList.setItem( 0, vValue )} - // function onSelfTestConsumables_biCarbPumpEntered ( vValue ) { _preTreatmentConsumablesSelfTest.checkList.setItem( 0, vValue )} - // function onSelfTestConsumables_acidPumpEntered ( vValue ) { _preTreatmentConsumablesSelfTest.checkList.setItem( 1, vValue )} - // } + Connections { target: vCloudSync + function onisRunningEntered ( vValue ) { _checkListView.checkList.setItem( 0, true )} + function onisRegisterStartEntered ( vValue ) { _checkListView.checkList.setItem( 1, true )} + function onisRegisterDoneEntered ( vValue ) { _checkListView.checkList.setItem( 1, vValue )} + } notificationText: "" }