Fix situation where two keyboards could be showing.

This commit is contained in:
Greyson Parrelli
2022-05-13 11:47:57 -04:00
committed by Cody Henthorne
parent 6b55cd0128
commit f5777d58fc
2 changed files with 5 additions and 1 deletions

View File

@@ -1169,6 +1169,9 @@ public class ConversationParentFragment extends Fragment
@Override
public void onKeyboardShown() {
inputPanel.onKeyboardShown();
if (emojiDrawerStub.resolved() && emojiDrawerStub.get().isShowing()) {
emojiDrawerStub.get().hide(true);
}
}
@Subscribe(threadMode = ThreadMode.MAIN)