13
0

Show correct bbt representation of region length in region list.

- fixes single-tempo assumption.
This commit is contained in:
nick_m 2016-06-21 23:55:28 +10:00
parent 95ba43916f
commit db686cca38

View File

@ -852,7 +852,15 @@ void
EditorRegions::populate_row_length (boost::shared_ptr<Region> region, TreeModel::Row const &row)
{
char buf[16];
if (ARDOUR_UI::instance()->secondary_clock->mode () == AudioClock::BBT) {
TempoMap& map (_session->tempo_map());
Timecode::BBT_Time bbt = map.bbt_at_beat (map.beat_at_frame (region->last_frame()) - map.beat_at_frame (region->first_frame()));
snprintf (buf, sizeof (buf), "%03d|%02d|%04d" , bbt.bars, bbt.beats, bbt.ticks);
} else {
format_position (region->length(), buf, sizeof (buf));
}
row[_columns.length] = buf;
}