Skip to content

Commit

Permalink
fix initial view to allow passwordless backup
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Nicol committed May 17, 2024
1 parent bb7b477 commit 12cdca2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ private void updateView() {
if (currentState == BackupWalletViewModel.State.INPUT || currentState ==BackupWalletViewModel.State.BADPIN) {
showView.setEnabled(true);
negativeButton.setEnabled(true); // prevent the user from cancelling in a decrypted wallet state
positiveButton.setEnabled(true);
positiveButton.setEnabled(preConditionsSatisfied());
positiveButton.setText(R.string.export_keys_dialog_button_export);
spendingPINView.setEnabled(true);
passwordView.setEnabled(true);
Expand Down

0 comments on commit 12cdca2

Please sign in to comment.