mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Call onCancelBatchInput only when onStartBatchInput has been called
This NPE issue (Bug: 7903331) has been introduced by Ie68c7698. Bug: 7903331 Change-Id: I44884f5608fe47d9db7a2c93a752d17b9ae39a22
This commit is contained in:
parent
11bc86adcb
commit
7c1e853387
@ -791,6 +791,9 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
|
||||
|
||||
private void cancelBatchInput() {
|
||||
sPointerTrackerQueue.cancelAllPointerTracker();
|
||||
if (!sInGesture) {
|
||||
return;
|
||||
}
|
||||
sInGesture = false;
|
||||
if (DEBUG_LISTENER) {
|
||||
Log.d(TAG, String.format("[%d] onCancelBatchInput", mPointerId));
|
||||
@ -1208,9 +1211,7 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
|
||||
printTouchEvent("onCancelEvt:", x, y, eventTime);
|
||||
}
|
||||
|
||||
if (sInGesture) {
|
||||
cancelBatchInput();
|
||||
}
|
||||
cancelBatchInput();
|
||||
sPointerTrackerQueue.cancelAllPointerTracker();
|
||||
sPointerTrackerQueue.releaseAllPointers(eventTime);
|
||||
onCancelEventInternal();
|
||||
|
Loading…
Reference in New Issue
Block a user