Skip to content

Commit

Permalink
[MaterialDatePicker] Fix crash when clicking OK/Cancel on text input …
Browse files Browse the repository at this point in the history
…mode due to hiding keyboard

PiperOrigin-RevId: 529835294
  • Loading branch information
dsn5ft authored and leticiarossi committed May 8, 2023
1 parent 26c3779 commit 7ccf670
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -139,7 +139,7 @@ static void showKeyboardWithAutoHideBehavior(@NonNull EditText... editTexts) {
return;
}
}
ViewUtils.hideKeyboard(view);
ViewUtils.hideKeyboard(view, /* useWindowInsetsController= */ false);
};

for (EditText editText : editTexts) {
Expand Down

0 comments on commit 7ccf670

Please sign in to comment.