When removing the root node, don't retain the pointer to it...

--HG--
branch : dfighter-tools
This commit is contained in:
dfighter1985 2014-09-17 20:51:45 +02:00
parent 0c354f436d
commit 4d760c7515

View file

@ -176,6 +176,9 @@ void ExpressionEditor::onDeleteSelection()
}
}
if( item == m_pvt->m_root )
m_pvt->m_root = NULL;
m_scene->removeItem( item );
delete item;
}