Remove incorrect factor of 2 scaling
This was a copy-paste error that caused the junction dots to be twice as small as they should be. Fixes https://gitlab.com/kicad/code/kicad/issues/4834
This commit is contained in:
parent
c6eb072726
commit
908377f9c4
|
@ -56,7 +56,7 @@ SCHEMATIC_SETTINGS::SCHEMATIC_SETTINGS( JSON_SETTINGS* aParent, const std::strin
|
|||
int defaultPinSymbolSize =
|
||||
appSettings ? appSettings->m_Drawing.pin_symbol_size : DEFAULT_TEXT_SIZE / 2;
|
||||
int defaultJunctionSize =
|
||||
appSettings ? appSettings->m_Drawing.default_junction_size : DEFAULT_JUNCTION_DIAM / 2;
|
||||
appSettings ? appSettings->m_Drawing.default_junction_size : DEFAULT_JUNCTION_DIAM;
|
||||
|
||||
m_params.emplace_back( new PARAM_SCALED<int>( "drawing.default_line_thickness",
|
||||
&m_DefaultLineWidth, Mils2iu( defaultLineThickness ),
|
||||
|
|
Loading…
Reference in New Issue