Don't place bookmarks for power symbols (like GND)

This commit is contained in:
Marek Roszko 2022-09-25 08:50:48 -04:00
parent 8f52821cd4
commit 2646be730d
1 changed files with 2 additions and 1 deletions

View File

@ -2066,7 +2066,8 @@ void SCH_SYMBOL::Plot( PLOTTER* aPlotter, bool aBackground ) const
aPlotter->EndBlock( nullptr );
aPlotter->Bookmark( GetBoundingBox(), GetField( REFERENCE_FIELD )->GetShownText(), _("Symbols") );
if( !m_part->IsPower() )
aPlotter->Bookmark( GetBoundingBox(), GetField( REFERENCE_FIELD )->GetShownText(), _("Symbols") );
}
}