We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1a1e5c commit 25b86b6Copy full SHA for 25b86b6
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