From d2595bd1b1bb8530aa4a531ee63cc1f95b73c074 Mon Sep 17 00:00:00 2001 From: Miodec Date: Tue, 4 Oct 2022 14:00:20 +0200 Subject: [PATCH] ignoring accuracy only on the composition event state part of #2545 --- frontend/src/ts/controllers/input-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/ts/controllers/input-controller.ts b/frontend/src/ts/controllers/input-controller.ts index 0d6bca973..c99c36372 100644 --- a/frontend/src/ts/controllers/input-controller.ts +++ b/frontend/src/ts/controllers/input-controller.ts @@ -491,7 +491,7 @@ function handleChar( // If a trailing composed char is used, ignore it when counting accuracy if ( !thisCharCorrect && - Misc.trailingComposeChars.test(resultingWord) && + // Misc.trailingComposeChars.test(resultingWord) && CompositionState.getComposing() ) { TestInput.input.current = resultingWord;