Eeschema: Clears the active block after mirroring
Fixes: lp:1740549 * https://bugs.launchpad.net/kicad/+bug/1740549
This commit is contained in:
parent
93683d0021
commit
e062780e9c
|
@ -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…
Reference in New Issue