fix typo
This commit is contained in:
parent
de46917024
commit
adc2bb2ff6
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class MultiTouchSupport {
|
|||
}
|
||||
int actionCode = event.getAction() & ACTION_MASK;
|
||||
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;
|
||||
}
|
||||
Integer pointCount = (Integer) getPointerCount.invoke(event);
|
||||
|
|
Loading…
Reference in a new issue