summaryrefslogtreecommitdiff
path: root/libs/ardour/vst_plugin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/vst_plugin.cc')
-rw-r--r--libs/ardour/vst_plugin.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/libs/ardour/vst_plugin.cc b/libs/ardour/vst_plugin.cc
index ae5e4897f8..26212ba03d 100644
--- a/libs/ardour/vst_plugin.cc
+++ b/libs/ardour/vst_plugin.cc
@@ -99,15 +99,7 @@ void
VSTPlugin::set_parameter (uint32_t which, float val)
{
_plugin->setParameter (_plugin, which, val);
-
- if (_state->want_program == -1 && _state->want_chunk == 0) {
- /* Heinous hack: Plugin::set_parameter below updates the `modified' status of the
- current preset, but if _state->want_program is not -1 then there is a preset
- setup pending or in progress, which we don't want any `modified' updates
- to happen for. So we only do this if _state->want_program is -1.
- */
- Plugin::set_parameter (which, val);
- }
+ Plugin::set_parameter (which, val);
}
uint32_t