Remove group when syncGroup is removed

This commit is contained in:
PavelRatushny 2017-09-21 15:00:37 +03:00
parent fdd2c80244
commit a9e539e339

View file

@ -611,6 +611,10 @@ public class MapMarkersHelper {
if (removeActiveMarkers) {
removeActiveMarkersFromSyncGroup(id);
}
MapMarkersGroup group = getMapMarkerGroupByName(id);
if (group != null) {
mapMarkersGroups.remove(group);
}
}
}