FIX: removed unwanted indent in *.kicad_pcb files ahead of "placed" and "locked"

This commit is contained in:
Dick Hollenbeck 2013-08-08 11:09:49 -05:00
parent 69c880e088
commit e5a94ff994
1 changed files with 2 additions and 2 deletions

View File

@ -869,10 +869,10 @@ void PCB_IO::format( MODULE* aModule, int aNestLevel ) const
m_out->Print( aNestLevel, "(module %s", m_out->Quotew( aModule->GetLibRef() ).c_str() );
if( aModule->IsLocked() )
m_out->Print( aNestLevel, " locked" );
m_out->Print( 0, " locked" );
if( aModule->IsPlaced() )
m_out->Print( aNestLevel, " placed" );
m_out->Print( 0, " placed" );
formatLayer( aModule );