From 5e6da9f9640967849d4bf326464fad0854304058 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 25 Nov 2021 00:55:03 +0000 Subject: [PATCH] Auto-start-wire tool requires an up-to-date connectivity. Fixes https://gitlab.com/kicad/code/kicad/issues/9628 --- eeschema/tools/ee_selection_tool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/tools/ee_selection_tool.cpp b/eeschema/tools/ee_selection_tool.cpp index 5035f18fc4..408216ed38 100644 --- a/eeschema/tools/ee_selection_tool.cpp +++ b/eeschema/tools/ee_selection_tool.cpp @@ -631,6 +631,7 @@ int EE_SELECTION_TOOL::Main( const TOOL_EVENT& aEvent ) if( m_frame->eeconfig()->m_Drawing.auto_start_wires && pt_tool && !pt_tool->HasPoint() + && !collector[0]->IsConnectivityDirty() && collector[0]->IsPointClickableAnchor( (wxPoint) snappedCursorPos ) ) { SCH_CONNECTION* connection = collector[0]->Connection();