From bf7c1c88f1b993b01903bafa92f5698cb2395656 Mon Sep 17 00:00:00 2001 From: Ronnie Gaensli Date: Sun, 19 Aug 2018 23:38:08 +0200 Subject: [PATCH] eeschema: fix dangling pin marker after adding NoConnect MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.7.4" This is a multi-part message in MIME format. --------------2.7.4 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: 8bit Fixes: lp:1787858 * https://bugs.launchpad.net/kicad/+bug/1787858 --- eeschema/bus-wire-junction.cpp | 1 + 1 file changed, 1 insertion(+) --------------2.7.4 Content-Type: text/x-patch; name="0001-eeschema-fix-dangling-pin-marker-after-adding-NoConn.patch" Content-Transfer-Encoding: 8bit Content-Disposition: attachment; filename="0001-eeschema-fix-dangling-pin-marker-after-adding-NoConn.patch" diff --git a/eeschema/bus-wire-junction.cpp b/eeschema/bus-wire-junction.cpp index b0322da..1cfc9b5 100644 --- a/eeschema/bus-wire-junction.cpp +++ b/eeschema/bus-wire-junction.cpp @@ -777,6 +777,7 @@ SCH_NO_CONNECT* SCH_EDIT_FRAME::AddNoConnect( const wxPoint& aPosition ) SetRepeatItem( no_connect ); GetScreen()->Append( no_connect ); SchematicCleanUp(); + GetScreen()->TestDanglingEnds(); OnModify(); m_canvas->Refresh(); SaveCopyInUndoList( no_connect, UR_NEW ); --------------2.7.4--