From 86b747890e4284bae0fa9fb16847b71fa9e89498 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 27 Sep 2008 06:53:34 +0000 Subject: [PATCH] fix initialization of ancestral region info in region copy constructor (dup'ed from 2.X) git-svn-id: svn://localhost/ardour2/branches/3.0@3815 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/region.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index 8693b7df8e..7adc9b80ab 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -211,8 +211,8 @@ Region::Region (boost::shared_ptr other) , _layer(other->_layer) , _first_edit(EditChangesID) , _frozen(0) - , _ancestral_start (_start) - , _ancestral_length (_length) + , _ancestral_start (other->_ancestral_start) + , _ancestral_length (other->_ancestral_length) , _stretch (1.0) , _shift (0.0) , _valid_transients(false)