Stop catching Android click events

Servo already can simulate clicks from multiple tap events

fixes https://github.com/servo/servo/issues/22702
This commit is contained in:
Manish Goregaokar 2019-01-16 18:18:06 -05:00
parent 7c043f1bd8
commit 82f81fb9fd

View file

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