diff --git a/drape_frontend/drape_engine.cpp b/drape_frontend/drape_engine.cpp index 96cf0d9ead..fba425e3b4 100644 --- a/drape_frontend/drape_engine.cpp +++ b/drape_frontend/drape_engine.cpp @@ -83,6 +83,8 @@ DrapeEngine::DrapeEngine(Params && params) drape_ptr message( new GuiRecacheMessage(blocker, move(params.m_info), m_widgetSizes)); m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread, move(message), MessagePriority::High); blocker.Wait(); + + ResizeImpl(m_viewport.GetWidth(), m_viewport.GetHeight()); } DrapeEngine::~DrapeEngine() @@ -99,11 +101,7 @@ DrapeEngine::~DrapeEngine() void DrapeEngine::Resize(int w, int h) { if (m_viewport.GetHeight() != h || m_viewport.GetWidth() != w) - { - gui::DrapeGui::Instance().SetSurfaceSize(m2::PointF(w, h)); - m_viewport.SetViewport(0, 0, w, h); - AddUserEvent(ResizeEvent(w, h)); - } + ResizeImpl(w, h); } void DrapeEngine::AddTouchEvent(TouchEvent const & event) @@ -217,6 +215,13 @@ void DrapeEngine::UserPositionChanged(m2::PointD const & position) }); } +void DrapeEngine::ResizeImpl(int w, int h) +{ + gui::DrapeGui::Instance().SetSurfaceSize(m2::PointF(w, h)); + m_viewport.SetViewport(0, 0, w, h); + AddUserEvent(ResizeEvent(w, h)); +} + void DrapeEngine::SetCountryInfo(gui::CountryInfo const & info, bool isCurrentCountry, bool isCountryLoaded) { m_threadCommutator->PostMessage(ThreadsCommutator::ResourceUploadThread, diff --git a/drape_frontend/drape_engine.hpp b/drape_frontend/drape_engine.hpp index 6885da5608..d1a3af168b 100644 --- a/drape_frontend/drape_engine.hpp +++ b/drape_frontend/drape_engine.hpp @@ -113,6 +113,8 @@ private: void TapEvent(m2::PointD const & pxPoint, bool isLong, bool isMyPosition, FeatureID const & feature); void UserPositionChanged(m2::PointD const & position); + void ResizeImpl(int w, int h); + private: drape_ptr m_frontend; drape_ptr m_backend;