From 396904500995f51274966b31c24802a14f898646 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 6 Mar 2022 20:17:33 +0000 Subject: [PATCH] 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. --- eeschema/sch_painter.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/eeschema/sch_painter.cpp b/eeschema/sch_painter.cpp index 5fbf40ae99..b855048feb 100644 --- a/eeschema/sch_painter.cpp +++ b/eeschema/sch_painter.cpp @@ -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 ); }