am 2ad7023c: Fix detecting out of keyboard area

* commit '2ad7023c548afe829eb87f0ea1be48b533a2ac2b':
  Fix detecting out of keyboard area
main
Tadashi G. Takaoka 2013-05-09 20:29:17 -07:00 committed by Android Git Automerger
commit 384d4e5b5d
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ public class GestureStroke {
public void setKeyboardGeometry(final int keyWidth, final int keyboardHeight) {
mKeyWidth = keyWidth;
mMinYCoordinate = -(int)(keyboardHeight * EXTRA_GESTURE_TRAIL_AREA_ABOVE_KEYBOARD_RATIO);
mMaxYCoordinate = keyboardHeight - 1;
mMaxYCoordinate = keyboardHeight;
// TODO: Find an appropriate base metric for these length. Maybe diagonal length of the key?
mDetectFastMoveSpeedThreshold = (int)(keyWidth * mParams.mDetectFastMoveSpeedThreshold);
mGestureDynamicDistanceThresholdFrom =