From 0cb99b2d67e22026304b3ab7149221d7d4540db7 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sun, 22 Mar 2009 15:32:06 +0100 Subject: [PATCH] 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 dce6ae9a7d5fe11ceb85eed510a696193594ea9f) --- plugins/vst_effect/vst_effect.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/vst_effect/vst_effect.cpp b/plugins/vst_effect/vst_effect.cpp index 8903b202f..94cfe74ef 100644 --- a/plugins/vst_effect/vst_effect.cpp +++ b/plugins/vst_effect/vst_effect.cpp @@ -69,6 +69,7 @@ vstEffect::vstEffect( model * _parent, { openPlugin( m_key.attributes["file"] ); } + setDisplayName( m_key.name ); }