Show correct bbt representation of region length in region list.
- fixes single-tempo assumption.
This commit is contained in:
parent
95ba43916f
commit
db686cca38
@ -852,7 +852,15 @@ void
|
|||||||
EditorRegions::populate_row_length (boost::shared_ptr<Region> region, TreeModel::Row const &row)
|
EditorRegions::populate_row_length (boost::shared_ptr<Region> region, TreeModel::Row const &row)
|
||||||
{
|
{
|
||||||
char buf[16];
|
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));
|
format_position (region->length(), buf, sizeof (buf));
|
||||||
|
}
|
||||||
|
|
||||||
row[_columns.length] = buf;
|
row[_columns.length] = buf;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user