mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-22 01:34:22 +00:00
Fix shift press breaking hangul composition
This commit is contained in:
parent
6e8c17c7be
commit
0fa701a134
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ class HangulCombiner : Combiner {
|
|||
val syllable: HangulSyllable? get() = history.lastOrNull()
|
||||
|
||||
override fun processEvent(previousEvents: ArrayList<Event>?, event: Event?): Event? {
|
||||
if(event == null) return event
|
||||
if(event == null || event.mKeyCode == Constants.CODE_SHIFT) return event
|
||||
if(Character.isWhitespace(event.mCodePoint)) {
|
||||
val text = combiningStateFeedback
|
||||
reset()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue