Eeschema, print: fix missing initialization that created 0 size texts.

This commit is contained in:
jean-pierre charras 2022-01-11 18:16:10 +01:00
parent f9927ab675
commit 083193c3d4
1 changed files with 1 additions and 0 deletions

View File

@ -167,6 +167,7 @@ void GRPrintText( wxDC* aDC, const VECTOR2I& aPos, const COLOR4D& aColor, const
attributes.m_Bold = aBold;
attributes.m_Halign = aH_justify;
attributes.m_Valign = aV_justify;
attributes.m_Size = aSize;
aFont->Draw( &callback_gal, aText, aPos, attributes );
}