mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 20:20:02 +00:00
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.
This commit is contained in:
parent
3aa6da058a
commit
a30ce26dba
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ GridLayout {
|
||||||
return daemonAddr.text.trim() + ":" + daemonPort.text.trim()
|
return daemonAddr.text.trim() + ":" + daemonPort.text.trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
LineEditMulti {
|
LineEdit {
|
||||||
id: daemonAddr
|
id: daemonAddr
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString
|
placeholderText: qsTr("Remote Node Hostname / IP") + translationManager.emptyString
|
||||||
|
@ -81,7 +81,7 @@ GridLayout {
|
||||||
onEditingFinished: root.editingFinished()
|
onEditingFinished: root.editingFinished()
|
||||||
}
|
}
|
||||||
|
|
||||||
LineEditMulti {
|
LineEdit {
|
||||||
id: daemonPort
|
id: daemonPort
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
placeholderText: qsTr("Port") + translationManager.emptyString
|
placeholderText: qsTr("Port") + translationManager.emptyString
|
||||||
|
|
Loading…
Reference in a new issue