Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/map
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2016-10-07 12:35:43 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2016-10-10 18:14:45 +0300
commit53da4259b42ee24fc5c662514cb533529939ad1b (patch)
tree303df93a9f376a2a0895ec79b6ed27c8c30f6b9c /map
parent4e99e7b9fc17d0a527c8598e22912046bf612869 (diff)
async changed to detached threads
Diffstat (limited to 'map')
-rw-r--r--map/framework.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/map/framework.cpp b/map/framework.cpp
index 3f64d250b3..daff132424 100644
--- a/map/framework.cpp
+++ b/map/framework.cpp
@@ -2561,7 +2561,8 @@ void Framework::AllowAutoZoom(bool allowAutoZoom)
bool const isPedestrianRoute = m_currentRouterType == RouterType::Pedestrian;
bool const isUberRoute = m_currentRouterType == RouterType::Uber;
- CallDrapeFunction(bind(&df::DrapeEngine::AllowAutoZoom, _1, allowAutoZoom && !isPedestrianRoute && !isUberRoute));
+ CallDrapeFunction(bind(&df::DrapeEngine::AllowAutoZoom, _1,
+ allowAutoZoom && !isPedestrianRoute && !isUberRoute));
}
void Framework::SaveAutoZoom(bool allowAutoZoom)