From f11cc904d28a218634e09cb170e2626d3e4cf8f4 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 25 Nov 2021 00:09:59 +0000 Subject: [PATCH] More fixes for realtime connectivity being off. Don't update net highlighting until after connectivity has been rebuilt. Fixes https://gitlab.com/kicad/code/kicad/issues/9628 --- eeschema/hierarch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/hierarch.cpp b/eeschema/hierarch.cpp index ed251eb7cd..4267e136bf 100644 --- a/eeschema/hierarch.cpp +++ b/eeschema/hierarch.cpp @@ -309,11 +309,11 @@ void SCH_EDIT_FRAME::DisplayCurrentSheet() UpdateTitle(); + HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items) + SCH_EDITOR_CONTROL* editTool = m_toolManager->GetTool(); TOOL_EVENT dummy; editTool->UpdateNetHighlighting( dummy ); - HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items) - UpdateHierarchyNavigator(); }