| 1769 | } |
| 1770 | |
| 1771 | void BookmarkManager::UpdateTrackMarksMinZoom() |
| 1772 | { |
| 1773 | auto const marksIds = GetUserMarkIds(UserMark::TRACK_SELECTION); |
| 1774 | for (auto markId : marksIds) |
| 1775 | { |
| 1776 | auto mark = GetMarkForEdit<TrackSelectionMark>(markId); |
| 1777 | mark->SetMinVisibleZoom(GetTrackSelectionMarkMinZoom(mark->GetTrackId())); |
| 1778 | } |
| 1779 | } |
| 1780 | |
| 1781 | void BookmarkManager::UpdateTrackMarksVisibility(kml::MarkGroupId groupId) |
| 1782 | { |
nothing calls this directly
no test coverage detected