From d53af10c9261172c57dbc66b6b4d1143b37bbcae Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 1 Dec 2018 05:36:33 +0100 Subject: [PATCH] AU: mark preset dirty when parameter changes --- libs/ardour/audio_unit.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;