Auto merge of #22708 - Manishearth:android-click, r=paulrouget

Stop catching Android click events

Servo already can simulate clicks from multiple tap events

fixes https://github.com/servo/servo/issues/22702

r? @paulrouget

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22708)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2019-01-17 04:04:57 -05:00 committed by GitHub
commit 0b5ca81f41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -292,7 +292,6 @@ public class ServoView extends GLSurfaceView
} }
public boolean onSingleTapUp(MotionEvent e) { public boolean onSingleTapUp(MotionEvent e) {
mServo.click((int) e.getX(), (int) e.getY());
return false; return false;
} }