summaryrefslogtreecommitdiff
path: root/libs/ardour/automatable.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-05-04 20:22:13 +0200
committerRobin Gareus <robin@gareus.org>2015-05-04 20:35:14 +0200
commit54fe093371a7bdb880fe4157b3cd78f7e4bb87fe (patch)
tree5630cc8e208e366547bb315c21854df818464681 /libs/ardour/automatable.cc
parentc704a2397762a2ca53f5c5fa77277cf15cd67ea1 (diff)
add signal for automation state changes per plugin
Diffstat (limited to 'libs/ardour/automatable.cc')
-rw-r--r--libs/ardour/automatable.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/automatable.cc b/libs/ardour/automatable.cc
index 9a37b1d590..f928ee01b3 100644
--- a/libs/ardour/automatable.cc
+++ b/libs/ardour/automatable.cc
@@ -278,6 +278,7 @@ Automatable::set_parameter_automation_state (Evoral::Parameter param, AutoState
if (c && (s != c->automation_state())) {
c->set_automation_state (s);
_a_session.set_dirty ();
+ AutomationStateChanged(); /* Emit signal */
}
}