From d9c6842ea3d478eadfc107a65e022b80962e3a9d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 6 Oct 2022 20:41:51 +0200 Subject: [PATCH] Fix region property inheritance (GUI) --- gtk2_ardour/editor_ops.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index ab01839445..f2dd50629c 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -7588,7 +7588,7 @@ Editor::split_region_at_points (boost::shared_ptr r, AnalysisFeatureList /* do NOT announce new regions 1 by one, just wait till they are all done */ - PropertyList plist (r->properties ()); + PropertyList plist (r->derive_properties ()); plist.add (ARDOUR::Properties::start, file_start); plist.add (ARDOUR::Properties::length, len); @@ -7617,7 +7617,7 @@ Editor::split_region_at_points (boost::shared_ptr r, AnalysisFeatureList RegionFactory::region_name (new_name, r->name()); /* Add the final region */ - PropertyList plist (r->properties ()); + PropertyList plist (r->derive_properties ()); plist.add (ARDOUR::Properties::start, r->start() + pos); plist.add (ARDOUR::Properties::length, (r->position() + pos).distance (r->end()));