Don't generate connections between two bus-wire entries

This commit is contained in:
Jon Evans 2019-03-17 15:40:20 -04:00 committed by Wayne Stambaugh
parent 5cf82f1a9e
commit 9cd2e65787
1 changed files with 4 additions and 0 deletions

View File

@ -445,5 +445,9 @@ bool SCH_BUS_WIRE_ENTRY::ConnectionPropagatesTo( const EDA_ITEM* aItem ) const
return false; return false;
} }
// Don't generate connections between two bus-wire entries
if( aItem->Type() == SCH_BUS_WIRE_ENTRY_T )
return false;
return true; return true;
} }