From 8b04f6078f3386258256d7f14fddebcefb0fdcbe Mon Sep 17 00:00:00 2001 From: ExMix Date: Mon, 15 Jun 2015 19:28:54 +0300 Subject: [PATCH] [drape] check max scale on rect setting in navigator --- drape_frontend/navigator.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drape_frontend/navigator.cpp b/drape_frontend/navigator.cpp index 502d1fa705..c0d259cd15 100644 --- a/drape_frontend/navigator.cpp +++ b/drape_frontend/navigator.cpp @@ -53,14 +53,15 @@ void Navigator::SetFromRect(m2::AnyRectD const & r) { m2::RectD const & worldR = df::GetWorldRect(); - m_Screen.SetFromRect(r); - m_Screen = ScaleInto(m_Screen, worldR); + ScreenBase tmp = m_Screen; + + tmp.SetFromRect(r); + tmp = ScaleInto(tmp, worldR); + if (CheckMaxScale(tmp)) + m_Screen = tmp; if (!m_InAction) - { - m_StartScreen.SetFromRect(r); - m_StartScreen = ScaleInto(m_StartScreen, worldR); - } + m_StartScreen = tmp; } void Navigator::CenterViewport(m2::PointD const & p)