am 805bae95: am 6f2830dc: am 2afa0e62: Merge "Fix a bug where gesture would delay update."

* commit '805bae9575809be17e61aa1f82e36c9f0d365ba7':
  Fix a bug where gesture would delay update.
This commit is contained in:
Jean Chalard 2013-10-09 19:31:59 -07:00 committed by Android Git Automerger
commit dc674273ac

View File

@ -823,14 +823,16 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
final int size = sAggregratedPointers.getPointerSize();
if (size > sLastRecognitionPointSize
&& stroke.hasRecognitionTimePast(eventTime, sLastRecognitionTime)) {
sLastRecognitionPointSize = size;
sLastRecognitionTime = eventTime;
if (DEBUG_LISTENER) {
Log.d(TAG, String.format("[%d] onUpdateBatchInput: batchPoints=%d", mPointerId,
size));
}
mTimerProxy.startUpdateBatchInputTimer(this);
mListener.onUpdateBatchInput(sAggregratedPointers);
// The listener may change the size of the pointers (when auto-committing
// for example), so we need to get the size from the pointers again.
sLastRecognitionPointSize = sAggregratedPointers.getPointerSize();
sLastRecognitionTime = eventTime;
}
}
}