summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-03-27 21:04:47 +0000
committerCarl Hetherington <carl@carlh.net>2012-03-27 21:04:47 +0000
commit1fc8dfa0fc3183e14cf5556c0ccb9cfa4b3532ed (patch)
treea87b7d0cd588dbb507bde324d7615d03f1309d49 /libs/ardour
parentca1de500041e2739cf623bc94b090ff82ee6052c (diff)
Put copy-constructed crossfades at the position of their
source crossfade; fixes #4793. git-svn-id: svn://localhost/ardour2/branches/3.0@11763 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/crossfade.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/crossfade.cc b/libs/ardour/crossfade.cc
index 902627933b..c687c60cd1 100644
--- a/libs/ardour/crossfade.cc
+++ b/libs/ardour/crossfade.cc
@@ -210,6 +210,7 @@ Crossfade::Crossfade (boost::shared_ptr<Crossfade> orig, boost::shared_ptr<Audio
_anchor_point = orig->_anchor_point;
_follow_overlap = orig->_follow_overlap;
_fixed = orig->_fixed;
+ _position = orig->_position;
_in = newin;
_out = newout;