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:
parent
ed705986e0
commit
f11cc904d2
|
@ -309,11 +309,11 @@ void SCH_EDIT_FRAME::DisplayCurrentSheet()
|
||||||
|
|
||||||
UpdateTitle();
|
UpdateTitle();
|
||||||
|
|
||||||
|
HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items)
|
||||||
|
|
||||||
SCH_EDITOR_CONTROL* editTool = m_toolManager->GetTool<SCH_EDITOR_CONTROL>();
|
SCH_EDITOR_CONTROL* editTool = m_toolManager->GetTool<SCH_EDITOR_CONTROL>();
|
||||||
TOOL_EVENT dummy;
|
TOOL_EVENT dummy;
|
||||||
editTool->UpdateNetHighlighting( dummy );
|
editTool->UpdateNetHighlighting( dummy );
|
||||||
|
|
||||||
HardRedraw(); // Ensure all items are redrawn (especially the drawing-sheet items)
|
|
||||||
|
|
||||||
UpdateHierarchyNavigator();
|
UpdateHierarchyNavigator();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue