mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix bug in some apps hiding keyboard when input is modal
This commit is contained in:
parent
cee9548995
commit
8bd334e919
@ -558,10 +558,10 @@ class LatinIME : InputMethodService(), LifecycleOwner, ViewModelStoreOwner, Save
|
||||
return
|
||||
}
|
||||
|
||||
val visibleTopY = if(isInputModal) { 0 } else { inputHeight - touchableHeight }
|
||||
val visibleTopY = inputHeight - touchableHeight
|
||||
|
||||
val touchLeft = 0
|
||||
val touchTop = visibleTopY
|
||||
val touchTop = if(isInputModal) { 0 } else { visibleTopY }
|
||||
val touchRight = composeView.width
|
||||
val touchBottom = inputHeight
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user