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:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2016-07-15 19:40:50 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2016-07-18 12:33:45 +0300
commit2235f312a16520a39a3ad3684c962abfff074eb9 (patch)
treec549dd8348a1061f68b1c12bc35eca170c6fc8da /drape_frontend/animation
parentc0ce77e1df4673fff7cf8b0e4f0af230376c688b (diff)
Review fixes.
Diffstat (limited to 'drape_frontend/animation')
-rw-r--r--drape_frontend/animation/interpolators.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape_frontend/animation/interpolators.cpp b/drape_frontend/animation/interpolators.cpp
index f51a010c54..b7b6234b4e 100644
--- a/drape_frontend/animation/interpolators.cpp
+++ b/drape_frontend/animation/interpolators.cpp
@@ -196,7 +196,7 @@ ScaleInterpolator::ScaleInterpolator(double delay, double startScale, double end
// static
double ScaleInterpolator::GetScaleDuration(double startScale, double endScale, bool isAutoZoom)
{
- // Resize 2.0 times should be done for 0.2 seconds.
+ // Resize 2.0 times should be done for 1.5 seconds in autozoom or for 0.2 seconds in usual case.
double const kPixelSpeed = isAutoZoom ? (2.0 / 1.5) : (2.0 / 0.2);
if (startScale > endScale)