Fix ERC error missing on stacked pins
Stacked pins are not connected, so they should be flagged as such. This checks for stacked pins that are not part of different symbols Fixes https://gitlab.com/kicad/code/kicad/issues/11926
This commit is contained in:
parent
9cebea5f11
commit
90ef84b958
|
@ -2714,7 +2714,8 @@ bool CONNECTION_GRAPH::ercCheckNoConnects( const CONNECTION_SUBGRAPH* aSubgraph
|
|||
{
|
||||
case SCH_PIN_T:
|
||||
{
|
||||
if( !pins.empty() )
|
||||
// Only consider a connection to be between pins on different symbols
|
||||
if( !pins.empty() && ( item->GetParent() != pins.front()->GetParent() ) )
|
||||
has_other_connections = true;
|
||||
|
||||
pins.emplace_back( static_cast<SCH_PIN*>( item ) );
|
||||
|
|
Loading…
Reference in New Issue