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:
Diffstat (limited to 'map/rotate_screen_task.cpp')
-rw-r--r--map/rotate_screen_task.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/map/rotate_screen_task.cpp b/map/rotate_screen_task.cpp
index 3a8cb49ff8..65c59ef2ed 100644
--- a/map/rotate_screen_task.cpp
+++ b/map/rotate_screen_task.cpp
@@ -19,7 +19,8 @@ void RotateScreenTask::OnStep(double ts)
anim::AngleInterpolation::OnStep(ts);
Navigator & nav = m_framework->GetNavigator();
nav.SetAngle(nav.Screen().GetAngle() + m_outAngle - prevAngle);
- m_framework->Invalidate();
+ ///@TODO UVR
+ //m_framework->Invalidate();
}
void RotateScreenTask::OnEnd(double ts)
@@ -27,7 +28,8 @@ void RotateScreenTask::OnEnd(double ts)
anim::AngleInterpolation::OnEnd(ts);
Navigator & nav = m_framework->GetNavigator();
nav.SetAngle(m_outAngle);
- m_framework->Invalidate();
+ ///@TODO UVR
+ //m_framework->Invalidate();
}
bool RotateScreenTask::IsVisual() const