Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -r559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2 -r380136967ba230affe91f614a9805319688eb05b --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 559dc64d12cf7647ec8c29ccbf4ca90f90e5e3a2) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 380136967ba230affe91f614a9805319688eb05b) @@ -43,7 +43,8 @@ readonly property int separatorGap : 40 readonly property string separatorText : ":" - property var ipValidator: RegExpValidator { + property alias isRegistered : _checkListView.completeVisible + property var ipValidator : RegExpValidator { 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]))$/ } @@ -56,7 +57,7 @@ TextEntry { id : _version_UI textInput.clip : true hasCursor : false - textInput.text : Qt .application.version + textInput.text : Qt .application.version textInput.horizontalAlignment: Text.AlignLeft label.text : qsTr("UI Version") separator.text : _root.separatorText @@ -121,13 +122,13 @@ anchors.right : parent.right anchors.rightMargin : _root.rightMargin - completeVisible : true completeText : qsTr("Registration complete") stepNames : [ qsTr("Cloud Service is running" ), qsTr("Registering the device" ) ] } + TouchRect { id : _scanButton anchors.bottom : parent.bottom anchors.bottomMargin : Variables.mainMenuHeight * 2 + Variables.minVGap * 2