From 2d9bac804c66e32e7166c2e2fdc8fa30a44e2438 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 18 Apr 2021 15:25:14 +0200 Subject: [PATCH] Pcbnew: minor fix: remove extra spaces when outputting pad primitives section. No format change. --- pcbnew/plugins/kicad/kicad_plugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pcbnew/plugins/kicad/kicad_plugin.cpp b/pcbnew/plugins/kicad/kicad_plugin.cpp index 5467c6c2ea..816ebcd684 100644 --- a/pcbnew/plugins/kicad/kicad_plugin.cpp +++ b/pcbnew/plugins/kicad/kicad_plugin.cpp @@ -1599,13 +1599,13 @@ void PCB_IO::format( const PAD* aPad, int aNestLevel ) const break; } - m_out->Print( nested_level, " (width %s)", + m_out->Print( 0, " (width %s)", FormatInternalUnits( primitive->GetWidth() ).c_str() ); if( primitive->IsFilled() ) - m_out->Print( nested_level, " (fill yes)" ); + m_out->Print( 0, " (fill yes)" ); - m_out->Print( nested_level, ")" ); + m_out->Print( 0, ")" ); } m_out->Print( 0, "\n");