We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3dda2cf + 6fdd496 commit 30b5beaCopy full SHA for 30b5bea
core/java/android/webkit/WebViewClassic.java
@@ -1368,7 +1368,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
1368
if (action == MotionEvent.ACTION_POINTER_DOWN) {
1369
cancelTouch();
1370
action = MotionEvent.ACTION_DOWN;
1371
- } else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
+ } else if (action == MotionEvent.ACTION_POINTER_UP) {
1372
// set mLastTouchX/Y to the remaining points for multi-touch.
1373
mLastTouchX = Math.round(x);
1374
mLastTouchY = Math.round(y);
0 commit comments