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:
parent
369d172460
commit
9b7d6a27de
|
@ -518,8 +518,7 @@ bool SCH_LINE::UpdateDanglingState( std::vector<DANGLING_END_ITEM>& aItemList )
|
||||||
if( item.GetItem() == this )
|
if( item.GetItem() == this )
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if( item.GetType() == NO_CONNECT_END ||
|
if( item.GetType() == BUS_START_END ||
|
||||||
item.GetType() == BUS_START_END ||
|
|
||||||
item.GetType() == BUS_END_END ||
|
item.GetType() == BUS_END_END ||
|
||||||
item.GetType() == BUS_ENTRY_END )
|
item.GetType() == BUS_ENTRY_END )
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue