Index: sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml =================================================================== diff -u -rd862dfcd402206e33b314c458e41c13b684a4565 -r934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f --- sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision d862dfcd402206e33b314c458e41c13b684a4565) +++ sources/gui/qml/pages/settings/SettingsDeviceRegistration.qml (.../SettingsDeviceRegistration.qml) (revision 934354462a353ff5e7fc2ddfe6f3a8f0121a8f3f) @@ -39,7 +39,7 @@ readonly property int spacing : 20 readonly property int leftMargin : 100 readonly property int rightMargin : 150 - readonly property int topMargin : topMarginContent + readonly property int topMargin : 200 readonly property int separatorGap : 40 readonly property string separatorText : ":" @@ -52,11 +52,9 @@ if ( visible ) vAdjustmentVersions .doAdjustment() } - Column { id : _column + contentItem: Column { id : _column spacing : _root.spacing - y : _root.topMargin - anchors.left : parent.left - anchors.leftMargin : _root.leftMargin + anchors.fill: parent TextEntry { id : _version_UI textInput.clip : true @@ -68,6 +66,7 @@ separator.width : _root.separatorGap textInput.width : _root.entryWidth label.width : _root.labelWidth + anchors.horizontalCenter: parent.horizontalCenter } TextEntry { id : _serial_TD @@ -80,6 +79,7 @@ separator.width : _root.separatorGap textInput.width : _root.entryWidth label.width : _root.labelWidth + anchors.horizontalCenter: parent.horizontalCenter } TextEntry { id : _serial_DD @@ -92,6 +92,7 @@ separator.width : _root.separatorGap textInput.width : _root.entryWidth label.width : _root.labelWidth + anchors.horizontalCenter: parent.horizontalCenter } TextEntry { id : _ipAddress_wlan0 @@ -105,6 +106,7 @@ textInput.width : _root.entryWidth label.width : _root.labelWidth validator : _root.ipValidator + anchors.horizontalCenter: parent.horizontalCenter } TextEntry { id : _ipAddress_eth0 @@ -118,6 +120,7 @@ textInput.width : _root.entryWidth label.width : _root.labelWidth validator : _root.ipValidator + anchors.horizontalCenter: parent.horizontalCenter } }