summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-03-27 10:45:51 +1100
committernick_m <mainsbridge@gmail.com>2016-05-27 23:38:12 +1000
commita7df009de73ad38026ff97d9aeafb8e2aa22e627 (patch)
treeabdd554320ddc223cf9d85c229dbad5a5c681115
parentcb43d485fa8c6856229e7a6ceb163b4607be2cc2 (diff)
Tempo ramps - avoid sending negative beats to the BFC.
-rw-r--r--libs/ardour/tempo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc
index 90dc8af537..0ffe36485f 100644
--- a/libs/ardour/tempo.cc
+++ b/libs/ardour/tempo.cc
@@ -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);