Index: sources/gui/qml/pages/SettingsWifi.qml =================================================================== diff -u -r13ac42cf8bdc5038dedd3302ba79dc387e5704b4 -rd71990c79c75c613d781890c6f77505d409d6c64 --- sources/gui/qml/pages/SettingsWifi.qml (.../SettingsWifi.qml) (revision 13ac42cf8bdc5038dedd3302ba79dc387e5704b4) +++ sources/gui/qml/pages/SettingsWifi.qml (.../SettingsWifi.qml) (revision d71990c79c75c613d781890c6f77505d409d6c64) @@ -133,6 +133,24 @@ } } + TextEntry { id: _networkSSID + enableInput: false + lineVisible: false + textInput.width: Variables.settingsWIFIInputWidth + line.width: Variables.settingsWIFIInputWidth + label.width: Variables.settingsWIFIInputWidth + anchors { + top: _dns.bottom + topMargin: Variables.settingsWIFISpacing + left: parent.left + } + labelText: qsTr("SSID: ") + textInput.text: vNetworkModel.ssid + onEnterPressed: { + _keyboard.setVisible(false) + } + } + TouchRect { id: _scan anchors { bottom: _rect.bottom