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:
authorExMix <rahuba.youri@mapswithme.com>2014-03-20 19:03:20 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:13:46 +0300
commit11ba4a6d5d34228903b27d6747c818c060fbfb76 (patch)
tree34a3d0eb422f9aa499b30a42574402197ac0e03c /map
parent1888a902bf2775b616faac77be76ee277bd714e1 (diff)
compass fix
Diffstat (limited to 'map')
-rw-r--r--map/animator.cpp2
-rw-r--r--map/compass_arrow.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/map/animator.cpp b/map/animator.cpp
index 65950fd417..f13bf98406 100644
--- a/map/animator.cpp
+++ b/map/animator.cpp
@@ -119,5 +119,5 @@ void Animator::StopChangeViewport()
double Animator::GetRotationSpeed() const
{
/// making full circle in 3 seconds.
- return 3;
+ return 1;
}
diff --git a/map/compass_arrow.cpp b/map/compass_arrow.cpp
index 2cf4e2f3e3..4a682cedf7 100644
--- a/map/compass_arrow.cpp
+++ b/map/compass_arrow.cpp
@@ -47,7 +47,7 @@ void CompassArrow::AnimateShow()
void CompassArrow::AnimateHide()
{
if (isBaseVisible() && (m_animTask == NULL || !IsHidingAnim()))
- CreateAnim(1.0, 0.0, 0.3, 0.3, false);
+ CreateAnim(1.0, 0.0, 0.3, 0.0, false);
}
void CompassArrow::SetAngle(double angle)