diff options
| author | selsta <selsta@sent.at> | 2021-05-06 20:17:34 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-05-06 20:19:16 +0200 |
| commit | 7d340869fcb6c2c1b18a2ce026b9514cf0e938e5 (patch) | |
| tree | 56ebb06f8d5526a6a48ea7673d750eab94b140bc /wizard | |
| parent | 426dc3fa4764b8ae31802d3894bb3b382e10be02 (diff) | |
| download | monzero-gui-7d340869fcb6c2c1b18a2ce026b9514cf0e938e5.tar.gz monzero-gui-7d340869fcb6c2c1b18a2ce026b9514cf0e938e5.tar.xz monzero-gui-7d340869fcb6c2c1b18a2ce026b9514cf0e938e5.zip | |
WizardSummary: display bootstrap address only in local 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..be9f00c0 100644 --- a/wizard/WizardSummary.qml +++ b/wizard/WizardSummary.qml @@ -72,7 +72,7 @@ ColumnLayout { } WizardSummaryItem { - visible: persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 2 + visible: !persistentSettings.useRemoteNode && persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 2 Layout.fillWidth: true header: qsTr("Bootstrap address") + translationManager.emptyString value: persistentSettings.bootstrapNodeAddress |
