diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-10-31 11:33:47 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-10-31 11:33:47 -0500 |
| commit | 1c58d4377a74b02c816da89416e1c86a12d5d050 (patch) | |
| tree | 99c5630d20d52e9b28a2476f10f0df0b84ad92b5 | |
| parent | 459ece51b6765fec28fa6093f62010465768ff7b (diff) | |
| parent | a30ce26dba75d7da0de141dc279f475a0cbfb7db (diff) | |
| download | monzero-gui-1c58d4377a74b02c816da89416e1c86a12d5d050.tar.gz monzero-gui-1c58d4377a74b02c816da89416e1c86a12d5d050.tar.xz monzero-gui-1c58d4377a74b02c816da89416e1c86a12d5d050.zip | |
Merge pull request #1695
a30ce26 Fix daemon host/port setting to allow tab switching (sectioneight)
| -rw-r--r-- | components/RemoteNodeEdit.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/RemoteNodeEdit.qml b/components/RemoteNodeEdit.qml index 36d2ee94..4b003969 100644 --- a/components/RemoteNodeEdit.qml +++ b/components/RemoteNodeEdit.qml @@ -63,7 +63,7 @@ GridLayout { return daemonAddr.text.trim() + ":" + daemonPort.text.trim() } - LineEditMulti { + LineEdit { id: daemonAddr Layout.fillWidth: true placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString @@ -81,7 +81,7 @@ GridLayout { onEditingFinished: root.editingFinished() } - LineEditMulti { + LineEdit { id: daemonPort Layout.fillWidth: true placeholderText: qsTr("Port") + translationManager.emptyString |
