This commit is contained in:
sonora 2016-12-28 10:31:06 +01:00
parent de46917024
commit adc2bb2ff6

View file

@ -83,7 +83,7 @@ public class MultiTouchSupport {
} }
int actionCode = event.getAction() & ACTION_MASK; int actionCode = event.getAction() & ACTION_MASK;
try { try {
if (actionCode == MotionEvent.ACTION_DOWN || MotionEvent.ACTION_UP || actionCode == MotionEvent.ACTION_CANCEL) { if (actionCode == MotionEvent.ACTION_DOWN || actionCode == MotionEvent.ACTION_UP || actionCode == MotionEvent.ACTION_CANCEL) {
return false; return false;
} }
Integer pointCount = (Integer) getPointerCount.invoke(event); Integer pointCount = (Integer) getPointerCount.invoke(event);