am 9d423536: Merge "Don\'t cancel long press timer too early" into jb-mr1-dev

* commit '9d42353611d77be82316c79fe598d101639c2486':
  Don't cancel long press timer too early
main
Tadashi G. Takaoka 2012-10-11 00:47:50 -07:00 committed by Android Git Automerger
commit 61155c7087
2 changed files with 2 additions and 4 deletions

View File

@ -836,13 +836,11 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
// Register move event on gesture tracker.
onGestureMoveEvent(x, y, eventTime, true /* isMajorEvent */, key);
if (sInGesture) {
mTimerProxy.cancelLongPressTimer();
mCurrentKey = null;
setReleasedKeyGraphics(oldKey);
return;
}
if (mGestureStrokeWithPreviewPoints.hasDetectedFastMove()) {
mTimerProxy.cancelLongPressTimer();
}
}
if (key != null) {

View File

@ -243,7 +243,7 @@ public class GestureStroke {
mLastMajorEventY = y;
}
public final boolean hasDetectedFastMove() {
private final boolean hasDetectedFastMove() {
return mDetectFastMoveTime > 0;
}