13
0

NOOP: reformat comment

This commit is contained in:
Paul Davis 2023-09-18 19:57:37 -06:00
parent 1344851912
commit 727b666c18

View File

@ -4444,8 +4444,11 @@ Editor::bounce_range_selection (BounceTarget target, bool with_processing)
ranges.push_back (TimelineRange (start, start+cnt, 0)); ranges.push_back (TimelineRange (start, start+cnt, 0));
playlist->cut (ranges); // discard result playlist->cut (ranges); // discard result
/*SPECIAL CASE: we are bouncing to a new Source *AND* replacing the existing range on the timeline (consolidate)*/ /* SPECIAL CASE: we are bouncing to a new Source *AND*
/*we don't add the whole_file region here; we insert a discrete copy*/ * replacing the existing range on the timeline
* (consolidate) *we don't add the whole_file region
* here; we insert a discrete copy.
*/
PropertyList plist; PropertyList plist;
plist.add (ARDOUR::Properties::whole_file, false); plist.add (ARDOUR::Properties::whole_file, false);
std::shared_ptr<Region> copy (RegionFactory::create (r, plist)); std::shared_ptr<Region> copy (RegionFactory::create (r, plist));