From 7cecc7edfb723d8248b3b3f8ecc4aa1f0b8ce0dd Mon Sep 17 00:00:00 2001 From: hogliux Date: Sun, 20 Mar 2016 13:09:00 +0000 Subject: [PATCH] Add automation support for VST3 bypass --- modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp index 1186bf3f5c..99cc210eda 100644 --- a/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp +++ b/modules/juce_audio_plugin_client/VST3/juce_VST3_Wrapper.cpp @@ -258,7 +258,7 @@ public: info.stepCount = 1; info.defaultNormalizedValue = 0.0f; info.unitId = Vst::kRootUnitId; - info.flags = Vst::ParameterInfo::kIsBypass; + info.flags = Vst::ParameterInfo::kIsBypass | Vst::ParameterInfo::kCanAutomate; } virtual ~BypassParam() {}