Include whisper in letter mode too

This commit is contained in:
Nehemiah of Zebulun 2023-12-04 11:57:56 -05:00
parent 4da4eabc19
commit a6ccd6d703

View File

@ -77,9 +77,9 @@ class LetterInputHandler(
Command.FINISH_DELETE -> finishDelete() Command.FINISH_DELETE -> finishDelete()
Command.INPUT_MODE -> inputMode(key) Command.INPUT_MODE -> inputMode(key)
Command.NUMBER -> triggerOriginalKeyEvent(key) Command.NUMBER -> triggerOriginalKeyEvent(key)
// Command.RECORD -> wkt9.onRecord(true) Command.RECORD -> wkt9.record()
Command.SPACE -> finalizeWordOrSentence(stats) Command.SPACE -> finalizeWordOrSentence(stats)
// Command.TRANSCRIBE -> wkt9.onTranscribe() Command.TRANSCRIBE -> wkt9.transcribe()
else -> Log.d(tag, "Command not implemented: $command") else -> Log.d(tag, "Command not implemented: $command")
} }
} }