Fixed crash in overlay tree, fixed compilation issue on iOS

This commit is contained in:
r.kuznetsov 2015-10-13 15:30:22 +03:00
parent 44e21af4a4
commit e94937437d
2 changed files with 4 additions and 1 deletions

View file

@ -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);
}

View file

@ -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));