Merge "Don't show gesture preview trail while detecting gesture input" into jb-mr1-dev
commit
c869a224a4
|
@ -545,13 +545,14 @@ public class PointerTracker implements PointerTrackerQueue.Element {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void startBatchInput() {
|
private void startBatchInput() {
|
||||||
if (!sInGesture && mGestureStrokeWithPreviewTrail.isStartOfAGesture()) {
|
if (sInGesture || !mGestureStrokeWithPreviewTrail.isStartOfAGesture()) {
|
||||||
if (DEBUG_LISTENER) {
|
return;
|
||||||
Log.d(TAG, "onStartBatchInput");
|
|
||||||
}
|
|
||||||
sInGesture = true;
|
|
||||||
mListener.onStartBatchInput();
|
|
||||||
}
|
}
|
||||||
|
if (DEBUG_LISTENER) {
|
||||||
|
Log.d(TAG, "onStartBatchInput");
|
||||||
|
}
|
||||||
|
sInGesture = true;
|
||||||
|
mListener.onStartBatchInput();
|
||||||
final boolean isOldestTracker = sPointerTrackerQueue.getOldestElement() == this;
|
final boolean isOldestTracker = sPointerTrackerQueue.getOldestElement() == this;
|
||||||
mDrawingProxy.showGesturePreviewTrail(this, isOldestTracker);
|
mDrawingProxy.showGesturePreviewTrail(this, isOldestTracker);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue