Pcbnew: always save the line width of footprint graphic edges in files, to allow width = 0 in polygon outlines.

(should not change anything currently for all existing footprints).
This commit is contained in:
jean-pierre charras 2015-04-08 15:45:34 +02:00
parent 0f7e358030
commit 0d77a8600d
1 changed files with 1 additions and 2 deletions

View File

@ -946,8 +946,7 @@ void PCB_IO::format( EDGE_MODULE* aModuleDrawing, int aNestLevel ) const
formatLayer( aModuleDrawing );
if( aModuleDrawing->GetWidth() != 0 )
m_out->Print( 0, " (width %s)", FMT_IU( aModuleDrawing->GetWidth() ).c_str() );
m_out->Print( 0, " (width %s)", FMT_IU( aModuleDrawing->GetWidth() ).c_str() );
m_out->Print( 0, ")\n" );
}