Don't generate connections between two bus-wire entries
This commit is contained in:
parent
5cf82f1a9e
commit
9cd2e65787
|
@ -445,5 +445,9 @@ bool SCH_BUS_WIRE_ENTRY::ConnectionPropagatesTo( const EDA_ITEM* aItem ) const
|
|||
return false;
|
||||
}
|
||||
|
||||
// Don't generate connections between two bus-wire entries
|
||||
if( aItem->Type() == SCH_BUS_WIRE_ENTRY_T )
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue