PCB Fields: save untranslated names

This commit is contained in:
Mike Williams 2023-06-23 09:18:25 -04:00
parent 61391e3984
commit b47fcac666
1 changed files with 1 additions and 1 deletions

View File

@ -1125,7 +1125,7 @@ void PCB_PLUGIN::format( const FOOTPRINT* aFootprint, int aNestLevel ) const
for( const PCB_FIELD* field : aFootprint->GetFields() )
{
m_out->Print( aNestLevel + 1, "(property %s %s",
m_out->Quotew( field->GetCanonicalName() ).c_str(),
m_out->Quotew( field->GetName() ).c_str(),
m_out->Quotew( field->GetText() ).c_str() );
format( field, aNestLevel + 1 );