mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 13:15:44 +01:00
disallow placement of audio-locked tempi within a frame of any other.
This commit is contained in:
parent
9c5e1ffb0d
commit
e4d6e4a87f
1 changed files with 5 additions and 0 deletions
|
|
@ -2567,6 +2567,11 @@ TempoMap::solve_map_minute (Metrics& imaginary, TempoSection* section, const dou
|
|||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (t->frame() == frame_at_minute (minute)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (t->position_lock_style() == MusicTime) {
|
||||
prev_t->set_c_func (prev_t->compute_c_func_pulse (t->note_types_per_minute(), t->pulse()));
|
||||
t->set_minute (prev_t->minute_at_ntpm (t->note_types_per_minute(), t->pulse()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue