diff --git a/eeschema/sch_text.cpp b/eeschema/sch_text.cpp index 118dfe9c85..14eb355acd 100644 --- a/eeschema/sch_text.cpp +++ b/eeschema/sch_text.cpp @@ -530,6 +530,7 @@ void SCH_TEXT::Plot( PLOTTER* aPlotter ) { static std::vector Poly; COLOR4D color = GetLayerColor( GetLayer() ); + int tmp = GetThickness(); int thickness = GetPenSize(); // Two thicknesses are set here: @@ -572,12 +573,11 @@ void SCH_TEXT::Plot( PLOTTER* aPlotter ) if( Poly.size() ) aPlotter->PlotPoly( Poly, NO_FILL ); + + SetThickness( tmp ); } -/* - * Display the type, shape, size and some other props to the Message panel - */ void SCH_TEXT::GetMsgPanelInfo( EDA_UNITS_T aUnits, MSG_PANEL_ITEMS& aList ) { wxString msg;