aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2021-04-19 07:21:11 +0200
committerselsta <selsta@sent.at>2021-04-19 07:21:11 +0200
commit23f71e1959a2c8d8ee01ca27b74996088a10e46c (patch)
treeb23415f41cf05bc3e85eb6811063fb324d1f6c4a /wizard
parent02ae14fd6bcd705ed838fba627775e4d8d52b5f3 (diff)
downloadmonzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.tar.gz
monzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.tar.xz
monzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.zip
WizardSummary: don't display node address in simple mode
Diffstat (limited to 'wizard')
-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