diff --git a/OsmAnd/src/net/osmand/plus/views/layers/ContextMenuLayer.java b/OsmAnd/src/net/osmand/plus/views/layers/ContextMenuLayer.java index 4567770e9c..7a8690fe2d 100644 --- a/OsmAnd/src/net/osmand/plus/views/layers/ContextMenuLayer.java +++ b/OsmAnd/src/net/osmand/plus/views/layers/ContextMenuLayer.java @@ -323,7 +323,9 @@ public class ContextMenuLayer extends OsmandMapLayer { return false; } - showContextMenu(point, tileBox, true); + LatLon pointLatLon = tileBox.getLatLonFromPixel(point.x, point.y); + menu.show(pointLatLon, null, null); + view.refreshMap(); return true; }