Skip to content

Commit 6fdd496

Browse files
jreckAndroid (Google) Code Review
authored andcommitted
Merge "DO NOT MERGE Remove dead code" into jb-dev
2 parents ecb388e + 2ec1098 commit 6fdd496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/java/android/webkit/WebViewClassic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,7 +1364,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
13641364
if (action == MotionEvent.ACTION_POINTER_DOWN) {
13651365
cancelTouch();
13661366
action = MotionEvent.ACTION_DOWN;
1367-
} else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
1367+
} else if (action == MotionEvent.ACTION_POINTER_UP) {
13681368
// set mLastTouchX/Y to the remaining points for multi-touch.
13691369
mLastTouchX = Math.round(x);
13701370
mLastTouchY = Math.round(y);

0 commit comments

Comments
 (0)