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 ecb388e + 2ec1098 commit 6fdd496Copy full SHA for 6fdd496
core/java/android/webkit/WebViewClassic.java
@@ -1364,7 +1364,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
1364
if (action == MotionEvent.ACTION_POINTER_DOWN) {
1365
cancelTouch();
1366
action = MotionEvent.ACTION_DOWN;
1367
- } else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
+ } else if (action == MotionEvent.ACTION_POINTER_UP) {
1368
// set mLastTouchX/Y to the remaining points for multi-touch.
1369
mLastTouchX = Math.round(x);
1370
mLastTouchY = Math.round(y);
0 commit comments