mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Do modal input when showing more keys panel (fixes Talkback bug)
This commit is contained in:
parent
7fdf54ec61
commit
c5cb5efabd
@ -329,9 +329,7 @@ public final class KeyboardSwitcher implements SwitchActions {
|
||||
}
|
||||
|
||||
public boolean isShowingMoreKeysPanel() {
|
||||
if (isShowingEmojiPalettes()) {
|
||||
return false;
|
||||
}
|
||||
if(mKeyboardView == null) return false;
|
||||
return mKeyboardView.isShowingMoreKeysPanel();
|
||||
}
|
||||
|
||||
|
@ -685,7 +685,7 @@ class LatinIME : InputMethodServiceCompose(), LatinIMELegacy.SuggestionStripCont
|
||||
}
|
||||
}
|
||||
|
||||
if(isInputModal) {
|
||||
if(isInputModal || latinIMELegacy.mKeyboardSwitcher?.isShowingMoreKeysPanel == true) {
|
||||
touchableInsets = Insets.TOUCHABLE_INSETS_REGION
|
||||
touchableRegion.set(0, 0, composeView!!.width, composeView!!.height)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user