mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix checking capitalized word code
This is a follow up change of If6c0edef. Bug: 5328922 Change-Id: Idb415f53f3fea6660c7802577d08b4d89d4e7842
This commit is contained in:
parent
5b0c124ca8
commit
436a645ea8
@ -106,7 +106,7 @@ public class WordComposer {
|
||||
|
||||
private static boolean isFirstCharCapitalized(int index, int codePoint, boolean previous) {
|
||||
if (index == 0) return Character.isUpperCase(codePoint);
|
||||
return previous && Character.isLowerCase(codePoint);
|
||||
return previous && !Character.isUpperCase(codePoint);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user