Skip to content

Commit

Permalink
Merge pull request #1477 from TeamAmaze/fix-1476
Browse files Browse the repository at this point in the history
Add empty input on master password preference
  • Loading branch information
EmmanuelMess committed Oct 21, 2018
1 parent d76bcfb commit d914b23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public boolean onPreferenceClick(Preference preference) {
}

masterPasswordDialogBuilder.input(getResources().getString(R.string.authenticate_password),
decryptedPassword, false, (dialog, input) -> { });
decryptedPassword, true, (dialog, input) -> { });
masterPasswordDialogBuilder.theme(utilsProvider.getAppTheme().getMaterialDialogTheme());
masterPasswordDialogBuilder.positiveText(getResources().getString(R.string.ok));
masterPasswordDialogBuilder.negativeText(getResources().getString(R.string.cancel));
Expand Down

0 comments on commit d914b23

Please sign in to comment.