mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
triggerbox: ignore cue-marker cues if told to do so
This commit is contained in:
parent
85b8816287
commit
44d52133ae
1 changed files with 4 additions and 0 deletions
|
|
@ -1636,6 +1636,10 @@ Session::first_cue_within (samplepos_t s, samplepos_t e)
|
||||||
return active_cue;
|
return active_cue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Config->get_cue_behavior() != FollowCues) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
CueEventTimeComparator cmp;
|
CueEventTimeComparator cmp;
|
||||||
CueEvents::iterator si = lower_bound (_cue_events.begin(), _cue_events.end(), s, cmp);
|
CueEvents::iterator si = lower_bound (_cue_events.begin(), _cue_events.end(), s, cmp);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue