small syntax fix

This commit is contained in:
Roman Sorokin 2014-08-01 10:41:14 +03:00 committed by Alex Zolotarev
parent 556a9093ae
commit 7e17bf1325

View file

@ -287,8 +287,9 @@ void ApplyLineFeature::ProcessRule(Stylist::rule_wrapper_t const & rule)
PathSymbolViewParams params;
params.m_depth = depth;
params.m_symbolName = symRule.name();
params.m_step = symRule.offset() * df::VisualParams::Instance().GetVisualScale();
params.m_offset = symRule.step() * df::VisualParams::Instance().GetVisualScale();
float const mainScale = df::VisualParams::Instance().GetVisualScale();
params.m_step = symRule.offset() * mainScale;
params.m_offset = symRule.step() * mainScale;
m_context.InsertShape(m_tileKey, MovePointer<MapShape>(new PathSymbolShape(m_path, params, m_nextModelViewScale)));
}