Formatting.

This commit is contained in:
Jeff Young 2020-12-04 14:48:48 +00:00
parent 8d72a768e0
commit 2050e05944
1 changed files with 2 additions and 0 deletions

View File

@ -1165,6 +1165,7 @@ void SCH_GLOBALLABEL::Print( RENDER_SETTINGS* aSettings, const wxPoint& aOffset
GRPoly( nullptr, DC, Poly.size(), &Poly[0], false, penWidth, color, color );
bool show = Schematic()->Settings().m_IntersheetRefsShow;
if ( show )
m_intersheetRefsField.Print( aSettings, aOffset );
}
@ -1174,6 +1175,7 @@ void SCH_GLOBALLABEL::Plot( PLOTTER* aPlotter )
SCH_TEXT::Plot( aPlotter );
bool show = Schematic()->Settings().m_IntersheetRefsShow;
if ( show )
m_intersheetRefsField.Plot( aPlotter );
}