mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
Tempo ramps - avoid sending negative beats to the BFC.
This commit is contained in:
parent
cb43d485fa
commit
a7df009de7
1 changed files with 1 additions and 1 deletions
|
|
@ -2042,7 +2042,7 @@ TempoMap::solve_map (Metrics& imaginary, TempoSection* section, const Tempo& bpm
|
|||
}
|
||||
}
|
||||
}
|
||||
if (section->movable() && frame < first_m_frame) {
|
||||
if (section->movable() && frame <= first_m_frame) {
|
||||
return false;
|
||||
} else {
|
||||
section->set_active (true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue