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".
(cherry picked from commit dce6ae9a7d)
This commit is contained in:
Tobias Doerffel
2009-03-22 15:32:06 +01:00
parent 1046c7afb8
commit 0cb99b2d67

View File

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