Don't show dangling symbols at ends of wires with no-connect flags.

Fixes: lp:1805255
* https://bugs.launchpad.net/kicad/+bug/1805255
This commit is contained in:
Jeff Young 2018-11-27 14:43:04 +00:00
parent 369d172460
commit 9b7d6a27de
1 changed files with 1 additions and 2 deletions

View File

@ -518,8 +518,7 @@ bool SCH_LINE::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList )
if( item.GetItem() == this )
continue;
if( item.GetType() == NO_CONNECT_END ||
item.GetType() == BUS_START_END ||
if( item.GetType() == BUS_START_END ||
item.GetType() == BUS_END_END ||
item.GetType() == BUS_ENTRY_END )
continue;