mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +01:00
Re-work main right-click context menu to operate on the selection, and remove some confusion about what region(s) will be affected by menu selections.
git-svn-id: svn://localhost/ardour2/trunk@1831 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
4342f2aeb0
commit
aa3bb18b17
13 changed files with 484 additions and 675 deletions
|
|
@ -741,6 +741,7 @@ AudioTrack::bounce (InterThreadInfo& itt)
|
|||
{
|
||||
vector<boost::shared_ptr<Source> > srcs;
|
||||
_session.write_one_audio_track (*this, 0, _session.current_end_frame(), false, srcs, itt);
|
||||
itt.done = true;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -749,6 +750,7 @@ AudioTrack::bounce_range (nframes_t start, nframes_t end, InterThreadInfo& itt)
|
|||
{
|
||||
vector<boost::shared_ptr<Source> > srcs;
|
||||
_session.write_one_audio_track (*this, start, end, false, srcs, itt);
|
||||
itt.done = true;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -4164,8 +4164,6 @@ Session::write_one_audio_track (AudioTrack& track, nframes_t start, nframes_t le
|
|||
|
||||
g_atomic_int_set (&processing_prohibited, 0);
|
||||
|
||||
itt.done = true;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue