am 2d15f11e: am 8c220a0a: Fix bug that can cause unexpected off-keyboard chars to appear as suggestions.

* commit '2d15f11e2531f03dd970b2d492e17e5d15777cd8':
  Fix bug that can cause unexpected off-keyboard chars to appear as suggestions.
main
Tom Ouyang 2012-09-04 22:57:27 -07:00 committed by Android Git Automerger
commit 462ebeaad2
1 changed files with 3 additions and 2 deletions

View File

@ -391,11 +391,12 @@ int ProximityInfoState::getDuration(const int index) const {
float ProximityInfoState::getPointToKeyLength(int inputIndex, int codePoint, float scale) {
const int keyId = mProximityInfo->getKeyIndexOf(codePoint);
if (keyId >= 0) {
if (keyId != NOT_AN_INDEX) {
const int index = inputIndex * mProximityInfo->getKeyCount() + keyId;
return min(mDistanceCache[index] * scale, mMaxPointToKeyLength);
}
return 0;
// If the char is not a key on the keyboard then return the max length.
return MAX_POINT_TO_KEY_LENGTH;
}
int ProximityInfoState::getKeyKeyDistance(int key0, int key1) {