Don't bitmap multi-line SCH_TEXT.

The linespacing isn't even close and multi-line text is also likely to
have longer lines which makes the X offset get way off too.
This commit is contained in:
Jeff Young 2022-03-06 20:17:33 +00:00
parent 6b3ed89248
commit 3969045009
1 changed files with 3 additions and 1 deletions

View File

@ -1856,7 +1856,9 @@ void SCH_PAINTER::draw( const SCH_TEXT *aText, int aLayer )
attrs.m_Angle = aText->GetDrawRotation();
attrs.m_StrokeWidth = getTextThickness( aText, drawingShadows );
if( nonCached( aText ) && underLODThreshold( aText->GetTextHeight() ) )
if( nonCached( aText )
&& underLODThreshold( aText->GetTextHeight() )
&& !shownText.Contains( wxT( "\n" ) ) )
{
bitmapText( shownText, aText->GetDrawPos() + text_offset, attrs );
}