summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-09-26 12:37:13 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-09-26 12:37:13 +0000
commita5e0a9b837835540e4df5a61751dc8584cad38d4 (patch)
treedef190c35964a98cba628e3e3f6822a671a1d37f /libs
parente193f9ebf3896b6cf59ac964397f59b9052fbec9 (diff)
fix up region constructor's initialization of ancestral region data
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3808 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/region.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc
index e907770061..129568a4c9 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -131,8 +131,8 @@ Region::Region (boost::shared_ptr<const Region> other)
_sync_position = other->_sync_position;
_length = other->_length;
_last_length = other->_length;
- _ancestral_start = _start;
- _ancestral_length = _length;
+ _ancestral_start = other->_ancestral_start;
+ _ancestral_length = other->_ancestral_length;
_stretch = other->_stretch;
_shift = other->_shift;
_name = other->_name;