We need to store the word if the word or sentence gets delimited using the numeric 1 key.

This commit is contained in:
Nehemiah of Zebulun 2023-12-03 20:20:37 -05:00
parent 3a1f1a595c
commit 3b0ce64b09

View File

@ -179,6 +179,12 @@ class LetterInputHandler(
sentenceStart = false
}
if (wordStart) {
word.deleteAt(word.length - 1)
if (word.isNotEmpty()) storeWord()
}
updateIcon()
}