Set "no personalized learning" flag for all text input.

This commit is contained in:
akwizgran
2023-03-09 10:52:46 +00:00
parent a09d88daa8
commit edd3310d03
13 changed files with 19 additions and 9 deletions

View File

@@ -65,7 +65,8 @@ public class SetPasswordFragment extends SetupFragment {
if (!viewModel.needToShowDozeFragment()) {
nextButton.setText(R.string.create_account_button);
passwordConfirmation.setImeOptions(IME_ACTION_DONE);
int options = passwordConfirmation.getImeOptions();
passwordConfirmation.setImeOptions(options | IME_ACTION_DONE);
}
viewModel.getIsCreatingAccount()