remove tests for now

This commit is contained in:
sonora 2016-12-28 12:10:41 +01:00
parent 1837786ac6
commit b317e2974f
2 changed files with 1 additions and 3 deletions

View file

@ -88,7 +88,7 @@ public class MultiTouchSupport {
if(inZoomMode){ if(inZoomMode){
listener.onZoomOrRotationEnded(zoomRelative, angleRelative); listener.onZoomOrRotationEnded(zoomRelative, angleRelative);
inZoomMode = false; inZoomMode = false;
return true; //return true;
} }
return false; return false;
} }

View file

@ -862,8 +862,6 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
layers.get(i).onTouchEvent(event, getCurrentRotatedTileBox()); layers.get(i).onTouchEvent(event, getCurrentRotatedTileBox());
} }
gestureDetector.onTouchEvent(event); gestureDetector.onTouchEvent(event);
} else {
gestureDetector.onTouchEvent(MotionEvent.obtain(SystemClock.uptimeMillis(), SystemClock.uptimeMillis() + 100, MotionEvent.ACTION_UP, 0.0f, 0.0f, 0));
} }
return true; return true;
} }