Fix logic screw-up in earlier commit.
(cherry picked from commit f2c0f4c87f
)
This commit is contained in:
parent
1f870bf76c
commit
36c5719535
|
@ -903,7 +903,10 @@ std::shared_ptr<SHAPE_COMPOUND> EDA_TEXT::GetEffectiveTextShape( bool aTriangula
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
attrs.m_Angle = ANGLE_0;
|
attrs.m_Angle = GetDrawRotation();
|
||||||
|
|
||||||
|
if( font->IsOutline() )
|
||||||
|
cache = GetRenderCache( font, shownText, VECTOR2I() );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( aTriangulate )
|
if( aTriangulate )
|
||||||
|
|
Loading…
Reference in New Issue