mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 3f46e8a8: am a38e14fd: Merge "Refactor skippable code point" into jb-mr2-dev
* commit '3f46e8a887a0ff6c59642d3ff68791a07574ea5c': Refactor skippable code point
This commit is contained in:
commit
5a84bd1b22
native/jni/src
@ -68,7 +68,7 @@ AK_FORCE_INLINE static int toBaseLowerCase(const int c) {
|
||||
return toLowerCase(toBaseCodePoint(c));
|
||||
}
|
||||
|
||||
inline static bool isSkippableCodePoint(const int codePoint) {
|
||||
inline static bool isIntentionalOmissionCodePoint(const int codePoint) {
|
||||
// TODO: Do not hardcode here
|
||||
return codePoint == KEYCODE_SINGLE_QUOTE || codePoint == KEYCODE_HYPHEN_MINUS;
|
||||
}
|
||||
|
@ -165,7 +165,7 @@ float ProximityInfoState::getPointToKeyLength(
|
||||
const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
|
||||
return min(mSampledDistanceCache_G[index], mMaxPointToKeyLength);
|
||||
}
|
||||
if (isSkippableCodePoint(codePoint)) {
|
||||
if (isIntentionalOmissionCodePoint(codePoint)) {
|
||||
return 0.0f;
|
||||
}
|
||||
// If the char is not a key on the keyboard then return the max length.
|
||||
|
Loading…
x
Reference in New Issue
Block a user