diff --git a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h index 0d9335b8c7..f23e6606de 100644 --- a/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h +++ b/extras/Introjucer/Source/Project/jucer_AudioPluginModule.h @@ -517,7 +517,8 @@ namespace AUHelpers Project& project = exporter.getProject(); - addPlistDictionaryKey (dict, "name", getPluginName (project).toString()); + addPlistDictionaryKey (dict, "name", getPluginManufacturer (project).toString() + + ": " + getPluginName (project).toString()); addPlistDictionaryKey (dict, "description", getPluginDesc (project).toString()); addPlistDictionaryKey (dict, "factoryFunction", getPluginAUExportPrefix (project).toString() + "Factory"); addPlistDictionaryKey (dict, "manufacturer", getPluginManufacturerCode (project).toString().trim().substring (0, 4));