Eeschema, print schematic: resolve text variables in symbol graphic text.
Variables in graphic text (body item) were resolved in plot, but not in print function. Fixes #16026 https://gitlab.com/kicad/code/kicad/-/issues/16026
This commit is contained in:
parent
b3893aed3d
commit
88a4979fff
|
@ -534,6 +534,17 @@ void SCH_SYMBOL::Print( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffse
|
||||||
tempPin->SetShape( symbolPin->GetShape() );
|
tempPin->SetShape( symbolPin->GetShape() );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for( LIB_ITEM& item : tempSymbol.GetDrawItems() )
|
||||||
|
{
|
||||||
|
if( EDA_TEXT* text = dynamic_cast<EDA_TEXT*>( &item ) )
|
||||||
|
{
|
||||||
|
// Use SCH_FIELD's text resolver
|
||||||
|
SCH_FIELD dummy( (SCH_ITEM*) this, -1 );
|
||||||
|
dummy.SetText( text->GetText() );
|
||||||
|
text->SetText( dummy.GetShownText( false ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
tempSymbol.Print( aSettings, m_pos + aOffset, m_unit, m_convert, opts, GetDNP() );
|
tempSymbol.Print( aSettings, m_pos + aOffset, m_unit, m_convert, opts, GetDNP() );
|
||||||
}
|
}
|
||||||
else // Use dummy() part if the actual cannot be found.
|
else // Use dummy() part if the actual cannot be found.
|
||||||
|
|
Loading…
Reference in New Issue