Update vtm jar (adds support for arm64), fixes #62

This commit is contained in:
mar-v-in 2015-12-25 03:49:22 +01:00
parent 7b74722c3d
commit b1db456fa7
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -254,7 +254,7 @@ public class BackendMap implements ItemizedLayer.OnItemGestureListener<MarkerIte
@Override
public void onInputEvent(Event event, MotionEvent motionEvent) {
if (motionEvent.getAction() == MotionEvent.ACTION_CANCEL || motionEvent.getAction() == MotionEvent.ACTION_UP && currentlyDraggedItem != null) {
if ((motionEvent.getAction() == MotionEvent.ACTION_CANCEL || motionEvent.getAction() == MotionEvent.ACTION_UP) && currentlyDraggedItem != null) {
currentlyDraggedItem.onDragStop();
currentlyDraggedItem = null;
}