From 9b7d6a27debdc3b31732e98499e9dbc18f00addc Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 27 Nov 2018 14:43:04 +0000 Subject: [PATCH] Don't show dangling symbols at ends of wires with no-connect flags. Fixes: lp:1805255 * https://bugs.launchpad.net/kicad/+bug/1805255 --- eeschema/sch_line.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eeschema/sch_line.cpp b/eeschema/sch_line.cpp index 8bcec32ca3..cf72f49caa 100644 --- a/eeschema/sch_line.cpp +++ b/eeschema/sch_line.cpp @@ -518,8 +518,7 @@ bool SCH_LINE::UpdateDanglingState( std::vector& 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;