Fixed user marks removing after user marks group updating.

This commit is contained in:
Daria Volvenkova 2017-11-29 17:16:03 +03:00 committed by Roman Kuznetsov
parent 6ec3fc658d
commit b911c4f74c

View file

@ -1014,7 +1014,8 @@ bool FrontendRenderer::CheckTileGenerations(TileKey const & tileKey)
auto removePredicate = [&tileKey](drape_ptr<RenderGroup> const & group)
{
return group->GetTileKey() == tileKey && group->GetTileKey().m_generation < tileKey.m_generation;
return group->GetTileKey() == tileKey && (group->GetTileKey().m_generation < tileKey.m_generation ||
(group->IsUserMark() && group->GetTileKey().m_userMarksGeneration < tileKey.m_userMarksGeneration));
};
RemoveRenderGroupsLater(removePredicate);