aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-04-22 01:54:27 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-04-22 01:54:27 -0400
commit842a9278d0949bf001070a4b64b29d4b6ba41049 (patch)
tree969fb94bdbc8f32d688093a14cc10745ed9a9164
parentf57e115e99439b7ca85e12f203f0ebde5287f9d0 (diff)
parent23f71e1959a2c8d8ee01ca27b74996088a10e46c (diff)
downloadmonzero-gui-842a9278d0949bf001070a4b64b29d4b6ba41049.tar.gz
monzero-gui-842a9278d0949bf001070a4b64b29d4b6ba41049.tar.xz
monzero-gui-842a9278d0949bf001070a4b64b29d4b6ba41049.zip
Merge pull request #3414
23f71e1 WizardSummary: don't display node address in simple mode (selsta)
-rw-r--r--wizard/WizardSummary.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/wizard/WizardSummary.qml b/wizard/WizardSummary.qml
index de3c60ec..0aa96804 100644
--- a/wizard/WizardSummary.qml
+++ b/wizard/WizardSummary.qml
@@ -65,14 +65,14 @@ ColumnLayout {
}
WizardSummaryItem {
- visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 0
+ visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 2
Layout.fillWidth: true
header: qsTr("Daemon address") + translationManager.emptyString
value: remoteNodesModel.currentRemoteNode().address
}
WizardSummaryItem {
- visible: persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 1
+ visible: persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 2
Layout.fillWidth: true
header: qsTr("Bootstrap address") + translationManager.emptyString
value: persistentSettings.bootstrapNodeAddress