mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-10 21:04:32 +00:00
Merge pull request #3414
23f71e1
WizardSummary: don't display node address in simple mode (selsta)
This commit is contained in:
commit
842a9278d0
1 changed files with 2 additions and 2 deletions
|
@ -65,14 +65,14 @@ ColumnLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
WizardSummaryItem {
|
WizardSummaryItem {
|
||||||
visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 0
|
visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 2
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
header: qsTr("Daemon address") + translationManager.emptyString
|
header: qsTr("Daemon address") + translationManager.emptyString
|
||||||
value: remoteNodesModel.currentRemoteNode().address
|
value: remoteNodesModel.currentRemoteNode().address
|
||||||
}
|
}
|
||||||
|
|
||||||
WizardSummaryItem {
|
WizardSummaryItem {
|
||||||
visible: persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 1
|
visible: persistentSettings.bootstrapNodeAddress !== "" && appWindow.walletMode == 2
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
header: qsTr("Bootstrap address") + translationManager.emptyString
|
header: qsTr("Bootstrap address") + translationManager.emptyString
|
||||||
value: persistentSettings.bootstrapNodeAddress
|
value: persistentSettings.bootstrapNodeAddress
|
||||||
|
|
Loading…
Reference in a new issue