add API to fetch all regionviews after a given position

This commit is contained in:
Paul Davis 2021-06-20 16:50:45 -06:00
parent a1ef870866
commit 12b536d8f2
7 changed files with 33 additions and 0 deletions

View file

@ -1170,6 +1170,16 @@ RouteTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>&
StripableTimeAxisView::get_inverted_selectables (sel, results);
}
void
RouteTimeAxisView::get_regionviews_at_or_after (samplepos_t pos, RegionSelection& regions)
{
if (!_view) {
return;
}
_view->get_regionviews_at_or_after (pos, regions);
}
RouteGroup*
RouteTimeAxisView::route_group () const
{