From 04d951784291c813711eb484b9a3571794454968 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 14 Nov 2010 20:05:37 +0000 Subject: [PATCH] Fix updates of LV2 plugin parameters. Fixes #3341. git-svn-id: svn://localhost/ardour2/branches/3.0@8032 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/lv2_plugin.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/lv2_plugin.cc b/libs/ardour/lv2_plugin.cc index be4ecf87af..b6349d012f 100644 --- a/libs/ardour/lv2_plugin.cc +++ b/libs/ardour/lv2_plugin.cc @@ -226,13 +226,13 @@ LV2Plugin::set_parameter (uint32_t which, float val) { if (which < slv2_plugin_get_num_ports(_plugin)) { _shadow_data[which] = val; -#if 0 ParameterChanged (which, val); /* EMIT SIGNAL */ +#if 0 if (which < parameter_count() && controls[which]) { controls[which]->Changed (); } -#endif +#endif } else { warning << string_compose (_("Illegal parameter number used with plugin \"%1\"."