forked from organicmaps/organicmaps
Fixed crash in RemoveRoute.
This commit is contained in:
parent
2dfb7be1f6
commit
f2f7c21fa7
1 changed files with 4 additions and 5 deletions
|
@ -407,15 +407,14 @@ void RoutingManager::SetRouterImpl(RouterType type)
|
|||
|
||||
void RoutingManager::RemoveRoute(bool deactivateFollowing)
|
||||
{
|
||||
GetPlatform().RunTask(Platform::Thread::Gui, [this]()
|
||||
GetPlatform().RunTask(Platform::Thread::Gui, [this, deactivateFollowing]()
|
||||
{
|
||||
m_bmManager->GetEditSession().ClearGroup(UserMark::Type::TRANSIT);
|
||||
|
||||
if (deactivateFollowing)
|
||||
SetPointsFollowingMode(false /* enabled */);
|
||||
});
|
||||
|
||||
|
||||
if (deactivateFollowing)
|
||||
SetPointsFollowingMode(false /* enabled */);
|
||||
|
||||
if (deactivateFollowing)
|
||||
{
|
||||
// Remove all subroutes.
|
||||
|
|
Loading…
Add table
Reference in a new issue