We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 608e5c4 + 25b86b6 commit b5b2aceCopy full SHA for b5b2ace
core/java/android/webkit/WebViewClassic.java
@@ -1370,7 +1370,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
1370
if (action == MotionEvent.ACTION_POINTER_DOWN) {
1371
cancelTouch();
1372
action = MotionEvent.ACTION_DOWN;
1373
- } else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
+ } else if (action == MotionEvent.ACTION_POINTER_UP) {
1374
// set mLastTouchX/Y to the remaining points for multi-touch.
1375
mLastTouchX = Math.round(x);
1376
mLastTouchY = Math.round(y);
0 commit comments