This commit is contained in:
zb
2023-09-03 11:30:50 +02:00
parent 50cb0d6d9b
commit aee8243bf6
10 changed files with 85 additions and 13 deletions

View File

@@ -35,7 +35,9 @@ class KeyCommandResolver (
Key.DOWN to Command.NAVIGATE,
Key.STAR to Command.DELETE,
Key.SELECT to Command.SELECT
Key.SELECT to Command.SELECT,
Key.FN to Command.FN
)),
onLong = HashMap(mapOf(

View File

@@ -22,5 +22,6 @@ data class KeyEventResult(
val updateInputStatus: Boolean = false,
val updateWordStatus: Boolean = false,
val focus: Boolean = false,
val switchInputMode: WKT9InputMode? = null
val switchInputMode: WKT9InputMode? = null,
val functionMode: Boolean = false
)