summaryrefslogtreecommitdiff
path: root/libs/ardour/audio_unit.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-12-01 05:36:33 +0100
committerRobin Gareus <robin@gareus.org>2018-12-01 05:36:33 +0100
commitd53af10c9261172c57dbc66b6b4d1143b37bbcae (patch)
tree39deec4066f1ba63f1d3255b3258bc8432d980b5 /libs/ardour/audio_unit.cc
parentb66726fdc12c91dc55be0cf18385aea06a300e15 (diff)
AU: mark preset dirty when parameter changes
Diffstat (limited to 'libs/ardour/audio_unit.cc')
-rw-r--r--libs/ardour/audio_unit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/audio_unit.cc b/libs/ardour/audio_unit.cc
index 0b68c95dce..73fd6bf94b 100644
--- a/libs/ardour/audio_unit.cc
+++ b/libs/ardour/audio_unit.cc
@@ -3479,7 +3479,7 @@ AUPlugin::parameter_change_listener (void* /*arg*/, void* src, const AudioUnitEv
/* whenever we change a parameter, we request that we are NOT notified of the change, so anytime we arrive here, it
means that something else (i.e. the plugin GUI) made the change.
*/
- ParameterChangedExternally (i->second, new_value);
+ Plugin::parameter_changed_externally (i->second, new_value);
break;
default:
break;