From 40462012ee65fc59010711c2303c4758e87dc65a Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Sun, 13 Mar 2022 23:06:26 -0400 Subject: [PATCH] Don't pre-scale the line width Fixes https://gitlab.com/kicad/code/kicad/-/issues/11122 (cherry picked from commit d74a0cdaa3103225a8d25f0aa8df3252c34bf1e8) --- pcbnew/import_gfx/dialog_import_gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/import_gfx/dialog_import_gfx.cpp b/pcbnew/import_gfx/dialog_import_gfx.cpp index 481ff83928..14a9366164 100644 --- a/pcbnew/import_gfx/dialog_import_gfx.cpp +++ b/pcbnew/import_gfx/dialog_import_gfx.cpp @@ -319,7 +319,7 @@ bool DIALOG_IMPORT_GFX::TransferDataFromWindow() // The line width is meant to be in pcbnew units, so we scale the import width before // applying - m_importer->SetLineWidthMM( m_lineWidth * m_scaleImport ); + m_importer->SetLineWidthMM( m_lineWidth ); m_importer->SetPlugin( std::move( plugin ) ); LOCALE_IO dummy; // Ensure floats can be read.