Skip to content

Commit

Permalink
Fix VstEffect regression
Browse files Browse the repository at this point in the history
  • Loading branch information
messmerd committed Sep 2, 2024
1 parent a7e8af6 commit 51647ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/VstEffect/VstEffect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ VstEffect::VstEffect( Model * _parent,
m_key( *_key ),
m_vstControls( this )
{
setDontRun(true);

if( !m_key.attributes["file"].isEmpty() )
{
openPlugin( m_key.attributes["file"] );
}
setDisplayName( m_key.attributes["file"].section( ".dll", 0, 0 ).isEmpty()
? m_key.name : m_key.attributes["file"].section( ".dll", 0, 0 ) );

setDontRun(true);
}


Expand Down

0 comments on commit 51647ff

Please sign in to comment.