Fix logic screw-up in earlier commit.

This commit is contained in:
Jeff Young 2023-10-03 20:53:52 +01:00
parent 336a38695a
commit f2c0f4c87f
1 changed files with 4 additions and 1 deletions

View File

@ -928,7 +928,10 @@ std::shared_ptr<SHAPE_COMPOUND> EDA_TEXT::GetEffectiveTextShape( bool aTriangula
}
else
{
attrs.m_Angle = ANGLE_0;
attrs.m_Angle = GetDrawRotation();
if( font->IsOutline() )
cache = GetRenderCache( font, shownText, VECTOR2I() );
}
if( aTriangulate )