13
0

Update automated Plugin Controlls when seeking and not rolling

This commit is contained in:
Robin Gareus 2016-08-19 03:31:08 +02:00
parent d599be115d
commit ba1058aca6

View File

@ -1090,7 +1090,8 @@ PluginInsert::run (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame
if (_session.transport_rolling() || _session.bounce_processing()) {
automation_run (bufs, start_frame, end_frame, speed, nframes);
} else {
connect_and_run (bufs, start_frame, end_frame, speed, nframes, 0, false);
Glib::Threads::Mutex::Lock lm (control_lock(), Glib::Threads::TRY_LOCK);
connect_and_run (bufs, start_frame, end_frame, speed, nframes, 0, lm.locked());
}
} else {