From 0f1ab3be2d24315840138da182ac39165c987505 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sun, 31 Mar 2019 15:06:47 -0400 Subject: [PATCH] Update connectivity before engaging highlight tool --- eeschema/schedit.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eeschema/schedit.cpp b/eeschema/schedit.cpp index 5579511c36..7fd123ae8b 100644 --- a/eeschema/schedit.cpp +++ b/eeschema/schedit.cpp @@ -561,6 +561,11 @@ void SCH_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent ) break; case ID_HIGHLIGHT: + // TODO(JE) remove once real-time connectivity is a given + #ifndef CONNECTIVITY_REAL_TIME + RecalculateConnections(); + #endif + SetToolID( ID_HIGHLIGHT, wxCURSOR_HAND, _("Highlight specific net") ); break;