mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-08 10:07:26 -04:00
wizard: improve restore from device ui/ux
This commit is contained in:
@@ -67,7 +67,13 @@ ColumnLayout {
|
||||
Layout.fillWidth: true
|
||||
header: qsTr("Restore height") + translationManager.emptyString
|
||||
value: wizardController.walletOptionsRestoreHeight
|
||||
visible: wizardController.walletOptionsRestoreHeight > 0
|
||||
visible: {
|
||||
if (walletOptionsIsRecoveringFromDevice && !wizardController.walletOptionsDeviceIsRestore) {
|
||||
return false;
|
||||
} else {
|
||||
return (wizardController.walletOptionsRestoreHeight > 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
WizardSummaryItem {
|
||||
|
||||
Reference in New Issue
Block a user