From b72b8c2f10cfa2ab4cf83f465a064a278ee7d076 Mon Sep 17 00:00:00 2001 From: sonora Date: Wed, 12 Jun 2013 12:06:04 +0200 Subject: [PATCH] fix typo --- .../src/net/osmand/plus/activities/MapActivityActions.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java b/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java index 27e5f092a4..dae83b73a3 100644 --- a/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java +++ b/OsmAnd/src/net/osmand/plus/activities/MapActivityActions.java @@ -803,15 +803,13 @@ public class MapActivityActions implements DialogProvider { } else if (standardId == R.string.context_menu_item_intermediate_point) { // Issue 1929: navigatePointDialogAndLaunchMap(activity, latitude, longitude, null); - //targets.navigateToPoint(new LatLon(latitude, longitude), - true, targets.getIntermediatePoints().size()); + //targets.navigateToPoint(new LatLon(latitude, longitude), true, targets.getIntermediatePoints().size()); IntermediatePointsDialog.openIntermediatePointsDialog(mapActivity); // For button-less search UI } else if (standardId == R.string.context_menu_item_destination_point) { // Issue 1929: navigatePointDialogAndLaunchMap(activity, latitude, longitude, null); - //targets.navigateToPoint(new LatLon(latitude, longitude), - true, -1); + //targets.navigateToPoint(new LatLon(latitude, longitude), true, -1); IntermediatePointsDialog.openIntermediatePointsDialog(mapActivity); } else if (standardId == R.string.context_menu_item_share_location) { shareLocation(latitude, longitude, mapActivity.getMapView().getZoom());