forked from organicmaps/organicmaps-tmp
[drape] Follow up a9c34056f2
. Correct resize with visible viewport update.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
3818544fc7
commit
860374639e
1 changed files with 5 additions and 1 deletions
|
@ -1011,7 +1011,11 @@ void Framework::OnSize(int w, int h)
|
|||
{
|
||||
if (m_drapeEngine != nullptr)
|
||||
m_drapeEngine->Resize(std::max(w, 2), std::max(h, 2));
|
||||
m_visibleViewport = m2::RectD(0, 0, w, h);
|
||||
|
||||
/// @todo Expected that DrapeEngine::Resize does all the work, but nope ..
|
||||
/// - Strange, but seems like iOS works fine without it.
|
||||
/// - Test Android screen orientation and position mark in map and navigation modes.
|
||||
SetVisibleViewport(m2::RectD(0, 0, w, h));
|
||||
}
|
||||
|
||||
namespace
|
||||
|
|
Loading…
Add table
Reference in a new issue