Don't pre-scale the line width
Fixes https://gitlab.com/kicad/code/kicad/-/issues/11122
This commit is contained in:
parent
38cde901b0
commit
d74a0cdaa3
|
@ -320,7 +320,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.
|
||||
|
|
Loading…
Reference in New Issue