Assert in setting rect fixed.

This commit is contained in:
Daria Volvenkova 2016-03-18 17:32:47 +03:00 committed by Sergey Yershov
parent 8a866424f3
commit 23f1d5e9f9
3 changed files with 1 additions and 25 deletions

View file

@ -86,25 +86,6 @@ void Navigator::CenterViewport(m2::PointD const & p)
m_StartScreen.SetOrg(pt);
}
void Navigator::SaveState()
{
settings::Set("ScreenClipRect", m_Screen.GlobalRect());
}
bool Navigator::LoadState()
{
m2::AnyRectD rect;
if (!settings::Get("ScreenClipRect", rect))
return false;
// additional check for valid rect
if (!df::GetWorldRect().IsRectInside(rect.GetGlobalRect()))
return false;
SetFromRect(rect);
return true;
}
void Navigator::OnSize(int w, int h)
{
m2::RectD const & worldR = df::GetWorldRect();

View file

@ -21,10 +21,6 @@ public:
void SetFromRects(m2::AnyRectD const & glbRect, m2::RectD const & pxRect);
void SetFromRect(m2::AnyRectD const & r, uint32_t tileSize, double visualScale);
void SaveState();
/// @return false if can't load previously saved values
bool LoadState();
void OnSize(int w, int h);
ScreenBase const & Screen() const { return m_Screen; }

View file

@ -1404,6 +1404,7 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::OGLContextFactory> contextFactory,
#endif
Allow3dMode(allow3d, allow3dBuildings);
LoadViewport();
// In case of the engine reinitialization recover route.
if (m_routingSession.IsActive())
@ -1416,8 +1417,6 @@ void Framework::CreateDrapeEngine(ref_ptr<dp::OGLContextFactory> contextFactory,
if (m_connectToGpsTrack)
GpsTracker::Instance().Connect(bind(&Framework::OnUpdateGpsTrackPointsCallback, this, _1, _2));
LoadViewport();
// In case of the engine reinitialization simulate the last tap to show selection mark.
if (m_lastTapEvent)
{