From b6a7e6dd4a16a30c506c33fdc19b9d48a6faa8ac Mon Sep 17 00:00:00 2001 From: Javier Serrano Polo Date: Sat, 4 Jun 2016 01:30:12 +0200 Subject: [PATCH] Do not delete VST parameter window when closed --- plugins/vestige/vestige.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/vestige/vestige.cpp b/plugins/vestige/vestige.cpp index 9db5ea352..b76047109 100644 --- a/plugins/vestige/vestige.cpp +++ b/plugins/vestige/vestige.cpp @@ -886,7 +886,7 @@ manageVestigeInstrumentView::manageVestigeInstrumentView( Instrument * _instrume m_vi->m_subWindow->setWindowTitle( m_vi->instrumentTrack()->name() + tr( " - VST plugin 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 );