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:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2016-12-06 14:58:50 +0300
committerGitHub <noreply@github.com>2016-12-06 14:58:50 +0300
commit1d2f02c0e6512db38658d916baf7d1e73c5b7904 (patch)
tree6a8a3fca000e0af946b86ba106d153049e78bf50 /map
parentfd2436514401ba326f6d9a4f3b6702104da854db (diff)
parent2bb74377c1a92f7d0a4851e7a08114b7761925a7 (diff)
Merge pull request #4875 from rokuz/traffic-fixed-screen-blinking
Fixed map blinking on traffic turning on, fixes
Diffstat (limited to 'map')
-rw-r--r--map/framework.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/framework.cpp b/map/framework.cpp
index 4d9a928ef9..1401bfae6e 100644
--- a/map/framework.cpp
+++ b/map/framework.cpp
@@ -2717,7 +2717,7 @@ void Framework::Load3dMode(bool & allow3d, bool & allow3dBuildings)
bool Framework::LoadTrafficEnabled()
{
- bool enabled = true; //TODO(@rokuz): temporary. It has to be false by default.
+ bool enabled = false;
settings::Get(kTrafficEnabledKey, enabled);
return enabled;
}