diff options
| author | selsta <selsta@sent.at> | 2021-04-19 07:21:11 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-04-19 07:21:11 +0200 |
| commit | 23f71e1959a2c8d8ee01ca27b74996088a10e46c (patch) | |
| tree | b23415f41cf05bc3e85eb6811063fb324d1f6c4a | |
| parent | 02ae14fd6bcd705ed838fba627775e4d8d52b5f3 (diff) | |
| download | monzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.tar.gz monzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.tar.xz monzero-gui-23f71e1959a2c8d8ee01ca27b74996088a10e46c.zip | |
WizardSummary: don't display node address in simple mode
| -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 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 |
