eeschema: fix dangling pin marker after adding NoConnect
Fixes: lp:1787858 * https://bugs.launchpad.net/kicad/+bug/1787858
This commit is contained in:
parent
5bd959d92c
commit
00d912f0b8
|
@ -777,6 +777,7 @@ SCH_NO_CONNECT* SCH_EDIT_FRAME::AddNoConnect( const wxPoint& aPosition )
|
||||||
SetRepeatItem( no_connect );
|
SetRepeatItem( no_connect );
|
||||||
GetScreen()->Append( no_connect );
|
GetScreen()->Append( no_connect );
|
||||||
SchematicCleanUp();
|
SchematicCleanUp();
|
||||||
|
GetScreen()->TestDanglingEnds();
|
||||||
OnModify();
|
OnModify();
|
||||||
m_canvas->Refresh();
|
m_canvas->Refresh();
|
||||||
SaveCopyInUndoList( no_connect, UR_NEW );
|
SaveCopyInUndoList( no_connect, UR_NEW );
|
||||||
|
|
Loading…
Reference in New Issue