Commit e5a94ff9 authored by Dick Hollenbeck's avatar Dick Hollenbeck

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

parent 69c880e0
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment