Fix indentation of properties in PCB file.

This commit is contained in:
Jeff Young 2020-08-20 12:37:57 +01:00
parent c5b91c9bb2
commit 1813db6970
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,7 @@ void PCB_IO::formatProperties( BOARD* aBoard, int aNestLevel ) const
{
for( const std::pair<const wxString, wxString>& prop : aBoard->GetProperties() )
{
m_out->Print( aNestLevel+1, "(property %s %s)\n",
m_out->Print( aNestLevel, "(property %s %s)\n",
m_out->Quotew( prop.first ).c_str(),
m_out->Quotew( prop.second ).c_str() );
}