diff --git a/OsmAnd/src/net/osmand/plus/myplaces/TrackSegmentFragment.java b/OsmAnd/src/net/osmand/plus/myplaces/TrackSegmentFragment.java index 071a1e7ae4..d0e02f0f4f 100644 --- a/OsmAnd/src/net/osmand/plus/myplaces/TrackSegmentFragment.java +++ b/OsmAnd/src/net/osmand/plus/myplaces/TrackSegmentFragment.java @@ -283,9 +283,17 @@ public class TrackSegmentFragment extends OsmAndListFragment { LatLon location = new LatLon(pointToShow.getLatitude(), pointToShow.getLongitude()); final OsmandSettings settings = app.getSettings(); + String typeName = ""; + if (getGpx().showCurrentTrack) { + typeName = getString(R.string.shared_string_currently_recording_track); + } else if (getGpxDataItem() != null) { + typeName = getGpxDataItem().getFile().getName(); + } else if (getGpx() != null) { + typeName = getGpx().path; + } settings.setMapLocationToShow(location.getLatitude(), location.getLongitude(), settings.getLastKnownMapZoom(), - new PointDescription(PointDescription.POINT_TYPE_WPT, getGpxDataItem() != null ? getGpxDataItem().getFile().getName() : ""), + new PointDescription(PointDescription.POINT_TYPE_WPT, typeName), false, getRect() );