Close points list when exit from measurement mode

This commit is contained in:
Alexander Sytnyk 2017-08-16 12:57:57 +03:00
parent dfeaa51292
commit 6cb9b80013

View file

@ -1106,6 +1106,9 @@ public class MeasurementToolFragment extends Fragment {
if (measurementToolLayer != null) {
measurementToolLayer.getMeasurementPoints().clear();
}
if (pointsListOpened) {
hidePointsList();
}
if (newGpxLine != null) {
GPXFile gpx = newGpxLine.getGpxFile();
Intent newIntent = new Intent(mapActivity, mapActivity.getMyApplication().getAppCustomization().getTrackActivity());