mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
Show correct bbt representation of region length in region list.
- fixes single-tempo assumption.
This commit is contained in:
parent
95ba43916f
commit
db686cca38
1 changed files with 9 additions and 1 deletions
|
|
@ -852,7 +852,15 @@ void
|
|||
EditorRegions::populate_row_length (boost::shared_ptr<Region> region, TreeModel::Row const &row)
|
||||
{
|
||||
char buf[16];
|
||||
format_position (region->length(), buf, sizeof (buf));
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue