Loading java/src/com/android/inputmethod/keyboard/PointerTracker.java +7 −6 Original line number Diff line number Diff line Loading @@ -545,13 +545,14 @@ public class PointerTracker implements PointerTrackerQueue.Element { } private void startBatchInput() { if (!sInGesture && mGestureStrokeWithPreviewTrail.isStartOfAGesture()) { if (sInGesture || !mGestureStrokeWithPreviewTrail.isStartOfAGesture()) { return; } if (DEBUG_LISTENER) { Log.d(TAG, "onStartBatchInput"); } sInGesture = true; mListener.onStartBatchInput(); } final boolean isOldestTracker = sPointerTrackerQueue.getOldestElement() == this; mDrawingProxy.showGesturePreviewTrail(this, isOldestTracker); } Loading Loading
java/src/com/android/inputmethod/keyboard/PointerTracker.java +7 −6 Original line number Diff line number Diff line Loading @@ -545,13 +545,14 @@ public class PointerTracker implements PointerTrackerQueue.Element { } private void startBatchInput() { if (!sInGesture && mGestureStrokeWithPreviewTrail.isStartOfAGesture()) { if (sInGesture || !mGestureStrokeWithPreviewTrail.isStartOfAGesture()) { return; } if (DEBUG_LISTENER) { Log.d(TAG, "onStartBatchInput"); } sInGesture = true; mListener.onStartBatchInput(); } final boolean isOldestTracker = sPointerTrackerQueue.getOldestElement() == this; mDrawingProxy.showGesturePreviewTrail(this, isOldestTracker); } Loading