diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2020-09-13 07:33:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-13 07:33:28 +0200 |
| commit | 04eab65b10ddc491be18ebeaf6ff9e6f74441eb8 (patch) | |
| tree | 4cba9ddd697b456df88bc1cd3c711a3be9c41f30 | |
| parent | 31dbe7ea42ac16a787f7f9d3d365de78533980e4 (diff) | |
| download | monzero-gui-04eab65b10ddc491be18ebeaf6ff9e6f74441eb8.tar.gz monzero-gui-04eab65b10ddc491be18ebeaf6ff9e6f74441eb8.tar.xz monzero-gui-04eab65b10ddc491be18ebeaf6ff9e6f74441eb8.zip | |
WizardRestoreWallet1: reset radio buttons when loading
| -rw-r--r-- | wizard/WizardRestoreWallet1.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wizard/WizardRestoreWallet1.qml b/wizard/WizardRestoreWallet1.qml index c1514cb3..838e2d00 100644 --- a/wizard/WizardRestoreWallet1.qml +++ b/wizard/WizardRestoreWallet1.qml @@ -339,6 +339,9 @@ Rectangle { if(previousView.viewName == "wizardHome"){ // cleanup wizardWalletInput.reset(); + seedRadioButton.checked = true; + keysRadioButton.checked = false; + qrRadioButton.checked = false; seedInput.text = ""; seedOffsetCheckbox.checked = false; seedOffset.text = ""; |
