From e33a331095d1cf488df5abcefa028d37ec25399c Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sun, 27 Dec 2020 15:31:48 -0500 Subject: [PATCH] Don't ERC check absorbed subgraphs Fixes https://gitlab.com/kicad/code/kicad/-/issues/6861 --- eeschema/connection_graph.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eeschema/connection_graph.cpp b/eeschema/connection_graph.cpp index b3012d4ef0..5b64e37002 100644 --- a/eeschema/connection_graph.cpp +++ b/eeschema/connection_graph.cpp @@ -2096,6 +2096,9 @@ int CONNECTION_GRAPH::RunERC() // Graph is supposed to be up-to-date before calling RunERC() wxASSERT( !subgraph->m_dirty ); + if( subgraph->m_absorbed ) + continue; + /** * NOTE: *