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
diff options
context:
space:
mode:
-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)