Fixed route preview duplication on switch router type

This commit is contained in:
r.kuznetsov 2017-06-27 13:53:36 +03:00 committed by Daria Volvenkova
parent 84d9c3e542
commit 85180ad797

View file

@ -674,6 +674,10 @@ void RoutingManager::SetRouter(RouterType type)
if (m_currentRouterType == type)
return;
// Hide preview.
if (m_drapeEngine != nullptr)
m_drapeEngine->RemoveAllRoutePreviewSegments();
SetLastUsedRouter(type);
SetRouterImpl(type);
}