[android] Fix gestures ending.

This commit is contained in:
Alex Zolotarev 2011-07-21 23:13:07 +03:00 committed by Alex Zolotarev
parent 350e4e9e5c
commit 34a58a1730

View file

@ -54,15 +54,13 @@ public class GesturesProcessor
break;
case MotionEvent.ACTION_UP:
getPointsMove(e);
nativeMove(END, m_pt1.x, m_pt1.y);
m_mode = NONE;
break;
case MotionEvent.ACTION_POINTER_UP:
getPointsZoom(e);
nativeZoom(END, m_pt1.x, m_pt1.y, m_pt2.x, m_pt2.y);
m_mode = NONE; // MOVE
m_mode = NONE;
break;
case MotionEvent.ACTION_MOVE: