mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-03 17:39:54 +00:00
Wizard: finish page: restore height hidden if not set
This commit is contained in:
parent
d67071a7a4
commit
54b22d21a8
2 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ Item {
|
||||||
+ qsTr("<b>Allow background mining: </b>") + wizard.settings['allow_background_mining'] + "<br>"
|
+ qsTr("<b>Allow background mining: </b>") + wizard.settings['allow_background_mining'] + "<br>"
|
||||||
+ qsTr("<b>Daemon address: </b>") + wizard.settings['daemon_address'] + "<br>"
|
+ qsTr("<b>Daemon address: </b>") + wizard.settings['daemon_address'] + "<br>"
|
||||||
+ qsTr("<b>testnet: </b>") + wizard.settings['testnet'] + "<br>"
|
+ qsTr("<b>testnet: </b>") + wizard.settings['testnet'] + "<br>"
|
||||||
+ qsTr("<b>Restore height: </b>") + wizard.settings['restoreHeight'] + "<br>"
|
+ (wizard.settings['restore_height'] === undefined ? "" : qsTr("<b>Restore height: </b>") + wizard.settings['restore_height']) + "<br>"
|
||||||
+ translationManager.emptyString
|
+ translationManager.emptyString
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
|
@ -137,7 +137,7 @@ Rectangle {
|
||||||
appWindow.persistentSettings.auto_donations_amount = settings.auto_donations_amount
|
appWindow.persistentSettings.auto_donations_amount = settings.auto_donations_amount
|
||||||
appWindow.persistentSettings.daemon_address = settings.daemon_address
|
appWindow.persistentSettings.daemon_address = settings.daemon_address
|
||||||
appWindow.persistentSettings.testnet = settings.testnet
|
appWindow.persistentSettings.testnet = settings.testnet
|
||||||
appWindow.persistentSettings.restoreHeight = parseInt(settings.restoreHeight)
|
appWindow.persistentSettings.restore_height = parseInt(settings.restore_height)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue