From f9a282278c5b69ddb13e1f2fdebcca4bcf75b9dc Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 7 Nov 2021 13:48:51 +0000 Subject: [PATCH] Update junction-dot-size-cache when Schematic Setup changes. Fixes https://gitlab.com/kicad/code/kicad/issues/9541 --- eeschema/sch_edit_frame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eeschema/sch_edit_frame.cpp b/eeschema/sch_edit_frame.cpp index ddada5a0bc..e5d5518ab9 100644 --- a/eeschema/sch_edit_frame.cpp +++ b/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 );