mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-21 11:01:41 +00:00
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 )
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user