fix automation update at transport stop when in automation Play mode
authorPaul Davis <paul@linuxaudiosystems.com>
Thu, 22 Oct 2015 03:06:40 +0000 (23:06 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Thu, 22 Oct 2015 03:06:40 +0000 (23:06 -0400)
libs/ardour/automatable.cc

index 0fb048b9ef879c8aa149d3e944c09428127523b4..69e8c70741f47ad9f5090ea5f5e38a0e7f655b6d 100644 (file)
@@ -409,7 +409,7 @@ Automatable::transport_stopped (framepos_t now)
                }
 
                if (l->automation_playback ()) {
-                       c->set_value (c->list ()->eval (now));
+                       c->set_value_unchecked (c->list ()->eval (now));
                }
        }
 }