summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-07 20:57:21 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-07 20:57:21 +0000
commitaf22f1047d5ee8cfe664342f39c87be19f110fc8 (patch)
treee02ff8588be41b31b3dd2fa88839fbfa78b1a8a4 /libs
parentc9b16a832c941219c32d35d43e9368fa4914cdd6 (diff)
Don't set TimeFXRequest done to true too early; it must only be set after Editor::do_timefx has added its StatefulDiffCommands. Should fix #4897 and duplicates.
git-svn-id: svn://localhost/ardour2/branches/3.0@12597 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/rb_effect.cc2
-rw-r--r--libs/ardour/st_stretch.cc2
2 files changed, 0 insertions, 4 deletions
diff --git a/libs/ardour/rb_effect.cc b/libs/ardour/rb_effect.cc
index 7ff60e6912..f3adaec22c 100644
--- a/libs/ardour/rb_effect.cc
+++ b/libs/ardour/rb_effect.cc
@@ -388,8 +388,6 @@ RBEffect::run (boost::shared_ptr<Region> r, Progress* progress)
}
}
- tsr.done = true;
-
return ret;
}
diff --git a/libs/ardour/st_stretch.cc b/libs/ardour/st_stretch.cc
index d8009c1218..b031ee28f9 100644
--- a/libs/ardour/st_stretch.cc
+++ b/libs/ardour/st_stretch.cc
@@ -203,7 +203,5 @@ STStretch::run (boost::shared_ptr<Region> a_region, Progress* progress)
}
}
- tsr.done = true;
-
return ret;
}