eeschema: Don't free pointers held by undo stack

This commit is contained in:
Seth Hillbrand 2019-05-21 08:19:48 -07:00
parent 1181b9f9b4
commit 68451a2a9c
1 changed files with 3 additions and 1 deletions

View File

@ -162,7 +162,9 @@ void SCH_EDIT_FRAME::ConvertTextType( SCH_TEXT* aText, KICAD_T aType )
if( selected )
m_toolManager->RunAction( EE_ACTIONS::addItemToSel, true, newtext );
delete aText;
// Otherwise, pointer is owned by the undo stack
if( aText->IsNew() )
delete aText;
OnModify();
}