Index: sources/gui/qml/pages/settings/SettingsWiFi.qml =================================================================== diff -u -r7077e38c74db9cccb5496ffefcf8936c0916de76 -r56ad953ae404fcf6956bd4f76b7a54b12d0285d3 --- sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 7077e38c74db9cccb5496ffefcf8936c0916de76) +++ sources/gui/qml/pages/settings/SettingsWiFi.qml (.../SettingsWiFi.qml) (revision 56ad953ae404fcf6956bd4f76b7a54b12d0285d3) @@ -34,8 +34,9 @@ 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]))$/ } - readonly property int labelWidth : 200 - readonly property int inputWidth : 175 + labelWidth : 200 + entryWidth : 175 + readonly property int spacing : 20 readonly property int leftMargin : 50 readonly property int rightMargin : 50 @@ -69,7 +70,7 @@ // nextInput : _gateway // it's not needed to be entered in order all the time and also the keyboard needs to be hidden for the set result to be shown. textInput.text : vNetwork.ipAddress label.text : qsTr("IP Address") - textInput.width : inputWidth + textInput.width : entryWidth label.width : labelWidth validator : ipValidator onEnterPressed : { @@ -81,7 +82,7 @@ TextEntry { id : _gateway // nextInput : _subnetmask // it's not needed to be entered in order all the time and also the keyboard needs to be hidden for the set result to be shown. textInput.text : vNetwork.gateway - textInput.width : inputWidth + textInput.width : entryWidth label.width : labelWidth label.text : qsTr("Gateway") validator : ipValidator @@ -94,7 +95,7 @@ TextEntry { id : _subnetmask // nextInput : _dns // it's not needed to be entered in order all the time and also the keyboard needs to be hidden for the set result to be shown. textInput.text : vNetwork.subnetMask - textInput.width : inputWidth + textInput.width : entryWidth label.width : labelWidth label.text : qsTr("Subnet Mask") validator : ipValidator @@ -106,7 +107,7 @@ TextEntry { id : _dns textInput.text : vNetwork.dns - textInput.width : inputWidth + textInput.width : entryWidth label.width : labelWidth label.text : qsTr("DNS") validator : ipValidator @@ -135,7 +136,7 @@ color : Colors.textMain horizontalAlignment : TextInput.Alignleft text : vNetwork.ssid - width : inputWidth + width : entryWidth } }