removed inflation of boundRect in PathTextElement for better on-screen text layout.

This commit is contained in:
rachytski 2012-01-10 15:49:18 +04:00 committed by Alex Zolotarev
parent 1fba8663d8
commit c1dd341e20

View file

@ -32,8 +32,8 @@ namespace yg
if (isDirtyRect())
{
m_boundRects = m_glyphLayout.boundRects();
for (unsigned i = 0; i < m_boundRects.size(); ++i)
m_boundRects[i] = m2::Inflate(m_boundRects[i], m2::PointD(10, 10));
// for (unsigned i = 0; i < m_boundRects.size(); ++i)
// m_boundRects[i] = m2::Inflate(m_boundRects[i], m2::PointD(10, 10));
// m_boundRects[i].m2::Inflate(m2::PointD(40, 2)); //< to create more sparse street names structure
setIsDirtyRect(false);
}