From a30ce26dba75d7da0de141dc279f475a0cbfb7db Mon Sep 17 00:00:00 2001 From: Aiden Scandella Date: Sun, 21 Oct 2018 06:14:17 -0700 Subject: [PATCH] Fix daemon host/port setting to allow tab switching Previously, these were multiline editing (for some reason I'm not sure, perhaps you can have multiple remote nodes?) I tried various workarounds, but the simplest was to change them to simply LineEdit (like username/password) and now my bug is fixed. --- components/RemoteNodeEdit.qml | 4 ++-- 1 file 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