From eb284c7cd479d18f034b9d1c3dd2f4b2d1ca3028 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 28 Jan 2014 20:41:54 +0000 Subject: [PATCH] Fix for shell names in the VST host. --- .../juce_audio_processors/format_types/juce_VSTPluginFormat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp index cfc7d76188..4702e3bfa3 100644 --- a/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp @@ -2703,6 +2703,7 @@ void VSTPluginFormat::findAllTypesForFile (OwnedArray& result { jassert (desc.uid == uid); desc.hasSharedContainer = true; + desc.name = shellEffectName; if (! arrayContainsPlugin (results, desc)) results.add (new PluginDescription (desc));