Browse Source

Update junction-dot-size-cache when Schematic Setup changes.

Fixes https://gitlab.com/kicad/code/kicad/issues/9541
6.0.7
Jeff Young 4 years ago
parent
commit
f9a282278c
  1. 2
      eeschema/sch_edit_frame.cpp

2
eeschema/sch_edit_frame.cpp

@ -1426,7 +1426,9 @@ void SCH_EDIT_FRAME::ShowAllIntersheetRefs( bool aShow )
void SCH_EDIT_FRAME::CommonSettingsChanged( bool aEnvVarsChanged, bool aTextVarsChanged )
{
SCHEMATIC_SETTINGS& settings = Schematic().Settings();
SCH_BASE_FRAME::CommonSettingsChanged( aEnvVarsChanged, aTextVarsChanged );
settings.m_JunctionSize = GetSchematicJunctionSize();
ShowAllIntersheetRefs( settings.m_IntersheetRefsShow );

Loading…
Cancel
Save