Don't ERC check absorbed subgraphs

Fixes https://gitlab.com/kicad/code/kicad/-/issues/6861
This commit is contained in:
Jon Evans 2020-12-27 15:31:48 -05:00
parent c615b7a49b
commit e33a331095
1 changed files with 3 additions and 0 deletions

View File

@ -2096,6 +2096,9 @@ int CONNECTION_GRAPH::RunERC()
// Graph is supposed to be up-to-date before calling RunERC() // Graph is supposed to be up-to-date before calling RunERC()
wxASSERT( !subgraph->m_dirty ); wxASSERT( !subgraph->m_dirty );
if( subgraph->m_absorbed )
continue;
/** /**
* NOTE: * NOTE:
* *