forked from organicmaps/organicmaps
Fixed user marks removing after user marks group updating.
This commit is contained in:
parent
6ec3fc658d
commit
b911c4f74c
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue