mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
fix tempo marker ramp to next.
This commit is contained in:
parent
e41285668c
commit
bb8b229a1e
1 changed files with 1 additions and 1 deletions
|
|
@ -1471,7 +1471,7 @@ Editor::ramp_to_next_tempo ()
|
||||||
TempoSection* tsp = &tm->tempo();
|
TempoSection* tsp = &tm->tempo();
|
||||||
TempoSection* next_ts = tmap.next_tempo_section (&tm->tempo());
|
TempoSection* next_ts = tmap.next_tempo_section (&tm->tempo());
|
||||||
if (next_ts) {
|
if (next_ts) {
|
||||||
const Tempo tempo (tsp->note_types_per_minute(), tsp->note_type(), next_ts->end_note_types_per_minute());
|
const Tempo tempo (tsp->note_types_per_minute(), tsp->note_type(), next_ts->note_types_per_minute());
|
||||||
const double pulse = tsp->pulse();
|
const double pulse = tsp->pulse();
|
||||||
const framepos_t frame = tsp->frame();
|
const framepos_t frame = tsp->frame();
|
||||||
const PositionLockStyle pls = tsp->position_lock_style();
|
const PositionLockStyle pls = tsp->position_lock_style();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue