Fix backward logic in REALTIME

This commit is contained in:
Seth Hillbrand 2019-04-12 09:38:12 -07:00
parent d70ae19cb8
commit 2d7ef9813f
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ void SCH_EDIT_FRAME::OnSelectTool( wxCommandEvent& aEvent )
case ID_HIGHLIGHT:
// TODO(JE) remove once real-time connectivity is a given
if( ADVANCED_CFG::GetCfg().m_realTimeConnectivity )
if( !ADVANCED_CFG::GetCfg().m_realTimeConnectivity )
RecalculateConnections();
SetToolID( ID_HIGHLIGHT, wxCURSOR_HAND, _("Highlight specific net") );