mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
don't run MIDI clock "tick" if session is silent (e.g. due to a locate)
This commit is contained in:
parent
c19f9f8a47
commit
76ea055b85
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ Session::process (pframes_t nframes)
|
|||
*/
|
||||
|
||||
try {
|
||||
if (!_engine.freewheeling() && Config->get_send_midi_clock() && transport_speed() == 1.0f && midi_clock->has_midi_port()) {
|
||||
if (!_silent && !_engine.freewheeling() && Config->get_send_midi_clock() && (transport_speed() == 1.0f || transport_speed() == 0.0f) && midi_clock->has_midi_port()) {
|
||||
midi_clock->tick (transport_at_start, nframes);
|
||||
}
|
||||
} catch (...) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue