From 8d46cc99fe2778c5658b659f4f1fe6ac828bb9e9 Mon Sep 17 00:00:00 2001 From: John Emmas Date: Wed, 14 Oct 2015 14:54:27 +0100 Subject: Fix a problem where VST automation data wasn't getting written (if the adjustments were made from the plugin's own controls) --- libs/ardour/plugin.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libs/ardour/plugin.cc') diff --git a/libs/ardour/plugin.cc b/libs/ardour/plugin.cc index 89f6d24137..f14c56798b 100644 --- a/libs/ardour/plugin.cc +++ b/libs/ardour/plugin.cc @@ -365,6 +365,12 @@ Plugin::set_parameter (uint32_t which, float) ParameterChanged (which, get_parameter (which)); /* EMIT SIGNAL */ } +void +Plugin::set_parameter_automated (uint32_t which, float val) +{ + Plugin::set_parameter (which, val); +} + int Plugin::set_state (const XMLNode& node, int /*version*/) { -- cgit v1.2.3