From 2050e059449a01250ce528ff71c5fed31539c136 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 4 Dec 2020 14:48:48 +0000 Subject: [PATCH] Formatting. --- eeschema/sch_text.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eeschema/sch_text.cpp b/eeschema/sch_text.cpp index dab8764467..44e00637d9 100644 --- a/eeschema/sch_text.cpp +++ b/eeschema/sch_text.cpp @@ -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 ); }