Issue 1929a

This commit is contained in:
sonora 2013-06-12 01:56:16 +02:00
parent 83db0810f7
commit 50726ee6ce

View file

@ -1309,16 +1309,18 @@ public class MapActivityActions implements DialogProvider {
settings.insertIntermediatePoint(lat, lon, name, 0, true); settings.insertIntermediatePoint(lat, lon, name, 0, true);
} }
targetPointsHelper.updatePointsFromSettings(); targetPointsHelper.updatePointsFromSettings();
// Issue 1929: IntermediatePointsDialog.openIntermediatePointsDialog(mapActivity); // Issue 1929:
MapActivity.launchMapActivityMoveToTop(act); openIntermediatePointsDialog();
//MapActivity.launchMapActivityMoveToTop(act);
} }
}); });
builder.show(); builder.show();
} else { } else {
settings.setPointToNavigate(lat, lon, true, name); settings.setPointToNavigate(lat, lon, true, name);
targetPointsHelper.updatePointsFromSettings(); targetPointsHelper.updatePointsFromSettings();
// Issue 1929: IntermediatePointsDialog.openIntermediatePointsDialog(mapActivity); // Issue 1929:
MapActivity.launchMapActivityMoveToTop(act); openIntermediatePointsDialog();
//MapActivity.launchMapActivityMoveToTop(act);
} }
} }