fix (
This commit is contained in:
parent
d7d13cb23d
commit
bebc1b5664
1 changed files with 1 additions and 1 deletions
|
@ -1055,7 +1055,7 @@ public class OsmandMapTileView implements IMapDownloaderCallback {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Try some slop logic here to better facilitate two finger tap zoom without losing map-linked-to-location
|
//Try some slop logic here to better facilitate two finger tap zoom without losing map-linked-to-location
|
||||||
boolean loseLocationLinkSlop = (multiTouchSupport.getCenterPoint().x - initialMultiTouchCenterPoint.x)
|
boolean loseLocationLinkSlop = ((multiTouchSupport.getCenterPoint().x - initialMultiTouchCenterPoint.x)
|
||||||
* (multiTouchSupport.getCenterPoint().x - initialMultiTouchCenterPoint.x)
|
* (multiTouchSupport.getCenterPoint().x - initialMultiTouchCenterPoint.x)
|
||||||
+ (multiTouchSupport.getCenterPoint().y - initialMultiTouchCenterPoint.y)
|
+ (multiTouchSupport.getCenterPoint().y - initialMultiTouchCenterPoint.y)
|
||||||
* (multiTouchSupport.getCenterPoint().y - initialMultiTouchCenterPoint.y))
|
* (multiTouchSupport.getCenterPoint().y - initialMultiTouchCenterPoint.y))
|
||||||
|
|
Loading…
Reference in a new issue