diff --git a/eeschema/dialogs/panel_setup_formatting.cpp b/eeschema/dialogs/panel_setup_formatting.cpp index 352faba60b..4c2fa82fbe 100644 --- a/eeschema/dialogs/panel_setup_formatting.cpp +++ b/eeschema/dialogs/panel_setup_formatting.cpp @@ -137,9 +137,6 @@ bool PANEL_SETUP_FORMATTING::TransferDataFromWindow() currJunctionDotSize = 1; } - settings.m_JunctionSizeMult = - projSettings->m_Drawing.junction_size_mult_list[currDotSizeIndex]; - settings.m_JunctionSizeChoice = currDotSizeIndex; // Store to set pulldown next time } diff --git a/eeschema/schematic_settings.h b/eeschema/schematic_settings.h index a8fee0c72e..9c76865cda 100644 --- a/eeschema/schematic_settings.h +++ b/eeschema/schematic_settings.h @@ -49,9 +49,8 @@ public: double m_TextOffsetRatio; int m_PinSymbolSize; int m_JunctionSize; // Size of junction dot in mils - // User choice for junction dot size ( e.g. none = 0, smallest = 1, small = 2, etc ) + // User choice for junction dot size ( e.g. none = 0, smallest = 1, small = 2, etc ) int m_JunctionSizeChoice; - double m_JunctionSizeMult; // junction dot size = this value * default line width bool m_IntersheetsRefShow; bool m_IntersheetsRefFormatShort;