diff --git a/OsmAnd/src/net/osmand/plus/routepointsnavigation/RoutePointsLayer.java b/OsmAnd/src/net/osmand/plus/routepointsnavigation/RoutePointsLayer.java index 86cf47c7a5..360826efe4 100644 --- a/OsmAnd/src/net/osmand/plus/routepointsnavigation/RoutePointsLayer.java +++ b/OsmAnd/src/net/osmand/plus/routepointsnavigation/RoutePointsLayer.java @@ -81,6 +81,8 @@ public class RoutePointsLayer extends OsmandMapLayer implements ContextMenuLaye plugin.getCurrentRoute().markPoint(point, true); } else if (itemId == R.string.mark_as_current){ plugin.getCurrentRoute().navigateToPoint(point); + } else if (itemId == R.string.navigate_to_next){ + plugin.getCurrentRoute().naviateToNextPoint(); } } };