forked from organicmaps/organicmaps
Fixed crash in overlay tree, fixed compilation issue on iOS
This commit is contained in:
parent
44e21af4a4
commit
e94937437d
2 changed files with 4 additions and 1 deletions
|
@ -45,6 +45,9 @@ void RenderGroup::Update(ScreenBase const & modelView)
|
|||
|
||||
void RenderGroup::CollectOverlay(ref_ptr<dp::OverlayTree> tree)
|
||||
{
|
||||
if (m_pendingOnDelete)
|
||||
return;
|
||||
|
||||
for(drape_ptr<dp::RenderBucket> & renderBucket : m_renderBuckets)
|
||||
renderBucket->CollectOverlayHandles(tree, GetOpacity() < 1.0);
|
||||
}
|
||||
|
|
|
@ -126,7 +126,7 @@ graphics::EDensity getDensityType(int exactDensityDPI, double scale)
|
|||
p.m_widgetsInitInfo[widget] = pos;
|
||||
});
|
||||
|
||||
p.m_widgetsInitInfo[gui::WIDGET_SCALE_LABLE] = gui::Position(dp::LeftBottom);
|
||||
p.m_widgetsInitInfo[gui::WIDGET_SCALE_LABEL] = gui::Position(dp::LeftBottom);
|
||||
|
||||
GetFramework().CreateDrapeEngine(make_ref<dp::OGLContextFactory>(m_factory), move(p));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue