From f2f7c21fa701f4977d19d8d6f6895911a14505cc Mon Sep 17 00:00:00 2001 From: Daria Volvenkova Date: Tue, 6 Mar 2018 14:39:55 +0300 Subject: [PATCH] Fixed crash in RemoveRoute. --- map/routing_manager.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 9fb4054324..e962e2543e 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -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.