summaryrefslogtreecommitdiff
path: root/libs/ardour/region.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-10-13 17:11:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-10-13 17:11:57 +0000
commit2065092d256eea0aa02ca32c27e91750b0b5f94e (patch)
tree99be8d4b6a9cb35d71ff5b35cc4a8611559e7026 /libs/ardour/region.cc
parent8fed85392ec8274c1c614c36485fcf2aa68e7d3a (diff)
fix for ancestral start values in basic region constructor
git-svn-id: svn://localhost/ardour2/branches/3.0@3956 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/region.cc')
-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 7cc22c7e5e..982eb3e023 100644
--- a/libs/ardour/region.cc
+++ b/libs/ardour/region.cc
@@ -92,8 +92,8 @@ Region::Region (boost::shared_ptr<Source> src, nframes_t start, nframes_t length
, _layer(layer)
, _first_edit(EditChangesNothing)
, _frozen(0)
- , _ancestral_start (start)
- , _ancestral_length (length)
+ , _ancestral_start (0)
+ , _ancestral_length (0)
, _stretch (1.0)
, _shift (1.0)
, _valid_transients(false)