prevent gesture detection in doubletap mode
This commit is contained in:
parent
86f40acbe8
commit
7ac52a3cfa
1 changed files with 3 additions and 1 deletions
|
@ -862,7 +862,9 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
|||
layers.get(i).onTouchEvent(event, getCurrentRotatedTileBox());
|
||||
}
|
||||
}
|
||||
gestureDetector.onTouchEvent(event);
|
||||
if (!doubleTapScaleDetector.isInZoomMode()) {
|
||||
gestureDetector.onTouchEvent(event);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue