FIX: removed unwanted indent in *.kicad_pcb files ahead of "placed" and "locked"
This commit is contained in:
parent
69c880e088
commit
e5a94ff994
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue