Browse Source

Fix gr_arc indentation level

7.0
Frank Zeeman 4 years ago
parent
commit
f063c00bf1
  1. 2
      pcbnew/plugins/kicad/pcb_plugin.cpp

2
pcbnew/plugins/kicad/pcb_plugin.cpp

@ -1658,7 +1658,7 @@ void PCB_PLUGIN::format( const PAD* aPad, int aNestLevel ) const
break;
case SHAPE_T::ARC:
m_out->Print( aNestLevel, "(gr_arc (start %s) (mid %s) (end %s)",
m_out->Print( nested_level, "(gr_arc (start %s) (mid %s) (end %s)",
FormatInternalUnits( primitive->GetStart() ).c_str(),
FormatInternalUnits( primitive->GetArcMid() ).c_str(),
FormatInternalUnits( primitive->GetEnd() ).c_str() );

Loading…
Cancel
Save