prevent small screen flings after double tap zoom
This commit is contained in:
parent
55eee5ad0e
commit
012992c2b6
1 changed files with 1 additions and 1 deletions
|
@ -862,7 +862,7 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
||||||
layers.get(i).onTouchEvent(event, getCurrentRotatedTileBox());
|
layers.get(i).onTouchEvent(event, getCurrentRotatedTileBox());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!doubleTapScaleDetector.isInZoomMode()) {
|
if (!doubleTapScaleDetector.isInZoomMode() && !doubleTapScaleDetector.isDoubleTapping()) {
|
||||||
gestureDetector.onTouchEvent(event);
|
gestureDetector.onTouchEvent(event);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue