VstEffect: set displayName property at initialization

In VstEffect constructor set the displayName property in order to make
EffectView display actual plugin name rather than just "VST Effect".
This commit is contained in:
Tobias Doerffel
2009-03-22 15:32:06 +01:00
parent 2547bf8d57
commit dce6ae9a7d

View File

@@ -69,6 +69,7 @@ vstEffect::vstEffect( model * _parent,
{
openPlugin( m_key.attributes["file"] );
}
setDisplayName( m_key.name );
}