From a0da78d8c514c9fecc96bf8dca4df3139981ea63 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 20 Jun 2024 16:32:53 +0200 Subject: [PATCH] VST3: do not expose hidden parameters as automatable --- libs/ardour/vst3_plugin.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/vst3_plugin.cc b/libs/ardour/vst3_plugin.cc index 9211a8bf43..d688902d3b 100644 --- a/libs/ardour/vst3_plugin.cc +++ b/libs/ardour/vst3_plugin.cc @@ -1486,6 +1486,7 @@ VST3PI::VST3PI (std::shared_ptr m, std::string unique_ if (pi.flags & /*Vst::ParameterInfo::kIsHidden*/ (1 << 4)) { p.label = X_("hidden"); + p.automatable = 0; } #if 1 // if (host_editing == 0) // FUnknownPtr host_editing (_controller);