Skip to content

Commit b5b2ace

Browse files
jreckAndroid (Google) Code Review
authored andcommitted
Merge "Remove dead code" into jb-mr1-dev
2 parents 608e5c4 + 25b86b6 commit b5b2ace

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
@@ -1370,7 +1370,7 @@ private void onHandleUiTouchEvent(MotionEvent ev) {
13701370
if (action == MotionEvent.ACTION_POINTER_DOWN) {
13711371
cancelTouch();
13721372
action = MotionEvent.ACTION_DOWN;
1373-
} else if (action == MotionEvent.ACTION_POINTER_UP && ev.getPointerCount() >= 2) {
1373+
} else if (action == MotionEvent.ACTION_POINTER_UP) {
13741374
// set mLastTouchX/Y to the remaining points for multi-touch.
13751375
mLastTouchX = Math.round(x);
13761376
mLastTouchY = Math.round(y);

0 commit comments

Comments
 (0)