mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
Make bounce range bounce the range on each selected track, instead of
always bouncing the range on the track the selection was originally made. git-svn-id: svn://localhost/ardour2/trunk@1574 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a31394fa8d
commit
a74b374024
1 changed files with 2 additions and 4 deletions
|
|
@ -2569,7 +2569,7 @@ Editor::bounce_range_selection ()
|
|||
return;
|
||||
}
|
||||
|
||||
TrackViewList *views = get_valid_views (selection->time.track, selection->time.group);
|
||||
TrackSelection views = selection->tracks;
|
||||
|
||||
nframes_t start = selection->time[clicked_selection].start;
|
||||
nframes_t end = selection->time[clicked_selection].end;
|
||||
|
|
@ -2577,7 +2577,7 @@ Editor::bounce_range_selection ()
|
|||
|
||||
begin_reversible_command (_("bounce range"));
|
||||
|
||||
for (TrackViewList::iterator i = views->begin(); i != views->end(); ++i) {
|
||||
for (TrackViewList::iterator i = views.begin(); i != views.end(); ++i) {
|
||||
|
||||
AudioTimeAxisView* atv;
|
||||
|
||||
|
|
@ -2604,8 +2604,6 @@ Editor::bounce_range_selection ()
|
|||
}
|
||||
|
||||
commit_reversible_command ();
|
||||
|
||||
delete views;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue