diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-05-27 13:27:59 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-05-27 13:27:59 -0500 |
| commit | d71e7354d904a273fa15543f2bc432244d87fc8f (patch) | |
| tree | 682bf038ec440f46d9501c78fac6154a5681f157 | |
| parent | bec36057579bec3bfd46a67dffac6e27fba5128f (diff) | |
| parent | d518b204b1b6714915dee19be0033c66f237e910 (diff) | |
| download | monzero-gui-d71e7354d904a273fa15543f2bc432244d87fc8f.tar.gz monzero-gui-d71e7354d904a273fa15543f2bc432244d87fc8f.tar.xz monzero-gui-d71e7354d904a273fa15543f2bc432244d87fc8f.zip | |
Merge pull request #2169
d518b20 WizardSummary: always show restore height when restoring from seed/keys/device (mmbyday)
| -rw-r--r-- | wizard/WizardSummary.qml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/wizard/WizardSummary.qml b/wizard/WizardSummary.qml index 8ee5ae77..1698d28e 100644 --- a/wizard/WizardSummary.qml +++ b/wizard/WizardSummary.qml @@ -67,13 +67,7 @@ ColumnLayout { Layout.fillWidth: true header: qsTr("Restore height") + translationManager.emptyString value: wizardController.walletOptionsRestoreHeight - visible: { - if (walletOptionsIsRecoveringFromDevice && !wizardController.walletOptionsDeviceIsRestore) { - return false; - } else { - return (wizardController.walletOptionsRestoreHeight > 0); - } - } + visible: wizardStateView.state === "wizardRestoreWallet4" || wizardController.walletOptionsIsRecoveringFromDevice } WizardSummaryItem { |
