forked from organicmaps/organicmaps
[android] Fix gestures ending.
This commit is contained in:
parent
350e4e9e5c
commit
34a58a1730
1 changed files with 1 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue