Skip to content

Commit

Permalink
Fix crash when re-opening VST effect manage dialog
Browse files Browse the repository at this point in the history
Unset Qt::WA_DeleteOnClose for the dialog to avoid deletion when closed
  • Loading branch information
PhysSong committed May 30, 2018
1 parent 235e8ee commit 24ae559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/VstEffect/VstEffectControls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ manageVSTEffectView::manageVSTEffectView( VstEffect * _eff, VstEffectControls *
m_vi->m_subWindow->setWidget(m_vi->m_scrollArea);
m_vi->m_subWindow->setWindowTitle( _eff->m_plugin->name() + tr( " - VST parameter control" ) );
m_vi->m_subWindow->setWindowIcon( PLUGIN_NAME::getIconPixmap( "logo" ) );
//m_vi->m_subWindow->setAttribute(Qt::WA_DeleteOnClose);
m_vi->m_subWindow->setAttribute(Qt::WA_DeleteOnClose, false);


l->setContentsMargins( 20, 10, 10, 10 );
Expand Down

0 comments on commit 24ae559

Please sign in to comment.