ignoring accuracy only on non korean words (korean is handled differently) #3634

This commit is contained in:
Miodec 2022-10-08 13:29:57 +02:00
parent 54de09578f
commit 56990f776e

View file

@ -492,7 +492,8 @@ function handleChar(
if (
!thisCharCorrect &&
// Misc.trailingComposeChars.test(resultingWord) &&
CompositionState.getComposing()
CompositionState.getComposing() &&
!Config.language.startsWith("korean")
) {
TestInput.input.current = resultingWord;
TestUI.updateWordElement();