Commit 8975fd3c authored by Dick Hollenbeck's avatar Dick Hollenbeck

a) (zone (fill (mode was wrong, b) put fill on one line

parent 5d415c4c
...@@ -1035,7 +1035,7 @@ void PCB_IO::format( ZONE_CONTAINER* aZone, int aNestLevel ) const ...@@ -1035,7 +1035,7 @@ void PCB_IO::format( ZONE_CONTAINER* aZone, int aNestLevel ) const
// Default is polygon filled. // Default is polygon filled.
if( aZone->GetFillMode() ) if( aZone->GetFillMode() )
m_out->Print( 0, " (mode polygon)" ); m_out->Print( 0, " (mode segment)" );
m_out->Print( 0, " (arc_segments %d) (thermal_gap %s) (thermal_bridge_width %s)", m_out->Print( 0, " (arc_segments %d) (thermal_gap %s) (thermal_bridge_width %s)",
aZone->GetArcSegCount(), aZone->GetArcSegCount(),
...@@ -1044,8 +1044,7 @@ void PCB_IO::format( ZONE_CONTAINER* aZone, int aNestLevel ) const ...@@ -1044,8 +1044,7 @@ void PCB_IO::format( ZONE_CONTAINER* aZone, int aNestLevel ) const
if( aZone->GetCornerSmoothingType() != ZONE_SETTINGS::SMOOTHING_NONE ) if( aZone->GetCornerSmoothingType() != ZONE_SETTINGS::SMOOTHING_NONE )
{ {
m_out->Print( 0, "\n" ); m_out->Print( 0, " (smoothing" );
m_out->Print( aNestLevel+1, "(smoothing" );
switch( aZone->GetCornerSmoothingType() ) switch( aZone->GetCornerSmoothingType() )
{ {
......
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