am cde005c0: Fix apostrophe issue
* commit 'cde005c05ec6b552ec26740b578be12c7d24013b': Fix apostrophe issuemain
commit
4bdbd254bb
|
@ -395,6 +395,11 @@ float ProximityInfoState::getPointToKeyLength(int inputIndex, int codePoint, flo
|
||||||
const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
|
const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
|
||||||
return min(mDistanceCache[index] * scale, mMaxPointToKeyLength);
|
return min(mDistanceCache[index] * scale, mMaxPointToKeyLength);
|
||||||
}
|
}
|
||||||
|
// TODO: Do not hardcode here
|
||||||
|
// No penalty to ' and -
|
||||||
|
if (codePoint == '\'' || codePoint == '-') {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
// If the char is not a key on the keyboard then return the max length.
|
// If the char is not a key on the keyboard then return the max length.
|
||||||
return MAX_POINT_TO_KEY_LENGTH;
|
return MAX_POINT_TO_KEY_LENGTH;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue