diff options
| author | selsta <selsta@sent.at> | 2021-05-06 19:25:48 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-05-06 19:25:48 +0200 |
| commit | 755d2185945beabb8e9c5b7d2ee623ec0435c3fe (patch) | |
| tree | bdc03c4698c8000e9da11708bcec2afdabe62e64 /wizard | |
| parent | 426dc3fa4764b8ae31802d3894bb3b382e10be02 (diff) | |
| download | monzero-gui-755d2185945beabb8e9c5b7d2ee623ec0435c3fe.tar.gz monzero-gui-755d2185945beabb8e9c5b7d2ee623ec0435c3fe.tar.xz monzero-gui-755d2185945beabb8e9c5b7d2ee623ec0435c3fe.zip | |
WizardSummary: display daemon address only in remote node mode
Diffstat (limited to 'wizard')
| -rw-r--r-- | wizard/WizardSummary.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardSummary.qml b/wizard/WizardSummary.qml index 0aa96804..026b787f 100644 --- a/wizard/WizardSummary.qml +++ b/wizard/WizardSummary.qml @@ -65,7 +65,7 @@ ColumnLayout { } WizardSummaryItem { - visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 2 + visible: persistentSettings.useRemoteNode && remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 2 Layout.fillWidth: true header: qsTr("Daemon address") + translationManager.emptyString value: remoteNodesModel.currentRemoteNode().address |
