mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-24 04:05:13 +00:00
Update vtm jar (adds support for arm64), fixes #62
This commit is contained in:
parent
7b74722c3d
commit
b1db456fa7
2 changed files with 1 additions and 1 deletions
Binary file not shown.
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue