Browse Source

Eeschema: Clears the active block after mirroring

Fixes: lp:1740549
* https://bugs.launchpad.net/kicad/+bug/1740549
pull/5/merge
Seth Hillbrand 8 years ago
committed by Wayne Stambaugh
parent
commit
e062780e9c
  1. 2
      eeschema/block.cpp

2
eeschema/block.cpp

@ -336,6 +336,7 @@ bool SCH_EDIT_FRAME::HandleBlockEnd( wxDC* aDC )
OnModify();
}
block->ClearItemsList();
GetScreen()->TestDanglingEnds();
m_canvas->Refresh();
break;
@ -356,6 +357,7 @@ bool SCH_EDIT_FRAME::HandleBlockEnd( wxDC* aDC )
OnModify();
}
block->ClearItemsList();
GetScreen()->TestDanglingEnds();
m_canvas->Refresh();
break;

Loading…
Cancel
Save