1
0
Fork 0

fixed incorrect text case after deleting a recomposed word

This commit is contained in:
sspanak 2024-11-26 15:58:26 +02:00 committed by Dimo Karaivanov
parent c61a73d5e4
commit a9e6b634fd

View file

@ -135,7 +135,7 @@ class ModeWords extends ModeCheonjiin {
if (word == null || word.length() < 2 || word.contains(" ")) {
Logger.d(LOG_TAG, "Not recomposing invalid word: '" + word + "'");
textCase = CASE_CAPITALIZE;
textCase = settings.getTextCase();
return false;
}