Merge pull request #2642 from michaelgregorius/2624-controller-crash

Fixes #2624 ("Controls window of LFO controller is not destroyed upon closing a project")
This commit is contained in:
Tres Finocchiaro
2016-03-06 13:56:09 -05:00

View File

@@ -104,6 +104,10 @@ ControllerView::ControllerView( Controller * _model, QWidget * _parent ) :
ControllerView::~ControllerView()
{
if (m_subWindow)
{
delete m_subWindow;
}
}