diff options
| author | xiphon <xiphon@protonmail.com> | 2021-04-03 10:45:02 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2021-04-06 11:58:36 +0000 |
| commit | 6bc96270469294d6ddfedf16ff166c49079491be (patch) | |
| tree | 3cf15acb631c4bc940b58f8b612420f78b35c050 /wizard/WizardSummary.qml | |
| parent | 34df4e74d4c75f53d0a05ad9e75cf494e9f7134a (diff) | |
| download | monzero-gui-6bc96270469294d6ddfedf16ff166c49079491be.tar.gz monzero-gui-6bc96270469294d6ddfedf16ff166c49079491be.tar.xz monzero-gui-6bc96270469294d6ddfedf16ff166c49079491be.zip | |
SettingsNode: implement multiple remote nodes support
Diffstat (limited to 'wizard/WizardSummary.qml')
| -rw-r--r-- | wizard/WizardSummary.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizard/WizardSummary.qml b/wizard/WizardSummary.qml index 840ee971..de3c60ec 100644 --- a/wizard/WizardSummary.qml +++ b/wizard/WizardSummary.qml @@ -65,10 +65,10 @@ ColumnLayout { } WizardSummaryItem { - visible: persistentSettings.remoteNodeAddress !== "" && appWindow.walletMode == 0 + visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 0 Layout.fillWidth: true header: qsTr("Daemon address") + translationManager.emptyString - value: persistentSettings.remoteNodeAddress + value: remoteNodesModel.currentRemoteNode().address } WizardSummaryItem { |
