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
This commit is contained in:
Jeff Young 2021-11-25 00:09:59 +00:00
parent ed705986e0
commit f11cc904d2
1 changed files with 2 additions and 2 deletions

View File

@ -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<SCH_EDITOR_CONTROL>();
TOOL_EVENT dummy;
editTool->UpdateNetHighlighting( dummy );
HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items)
UpdateHierarchyNavigator();
}