summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-22 15:16:54 +0200
committerRobin Gareus <robin@gareus.org>2017-07-22 15:16:54 +0200
commitfba2c2467da8965e49c3c468431e8c00c8b60771 (patch)
tree8084347a7f6c4047368833ebd353e75f514a065f /libs
parent24e92c1861e91835a62e38d76a516bfec915d43c (diff)
Fix Route mute automation touch (owned control)
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 5fc1105f61..2c5cda55a1 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -4771,6 +4771,8 @@ Route::the_instrument_unlocked () const
void
Route::non_realtime_locate (framepos_t pos)
{
+ Automatable::non_realtime_locate (pos);
+
if (_pannable) {
_pannable->non_realtime_locate (pos);
}