Pcbnew: minor fix: remove extra spaces when outputting pad primitives section.

No format change.
This commit is contained in:
jean-pierre charras 2021-04-18 15:25:14 +02:00
parent 8967e7eb3e
commit 2d9bac804c
1 changed files with 3 additions and 3 deletions

View File

@ -1599,13 +1599,13 @@ void PCB_IO::format( const PAD* aPad, int aNestLevel ) const
break; break;
} }
m_out->Print( nested_level, " (width %s)", m_out->Print( 0, " (width %s)",
FormatInternalUnits( primitive->GetWidth() ).c_str() ); FormatInternalUnits( primitive->GetWidth() ).c_str() );
if( primitive->IsFilled() ) if( primitive->IsFilled() )
m_out->Print( nested_level, " (fill yes)" ); m_out->Print( 0, " (fill yes)" );
m_out->Print( nested_level, ")" ); m_out->Print( 0, ")" );
} }
m_out->Print( 0, "\n"); m_out->Print( 0, "\n");