summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_timefx.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-06-04 15:23:36 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-06-04 15:23:36 +0000
commit4ac444dad56dfaff8006b4a233ab135120afde0e (patch)
tree3d9a73d84b486234235b18a57c4be11abae0796b /gtk2_ardour/editor_timefx.cc
parent3077b251a183d265cd553a3006b5e76fcf4ab416 (diff)
revert previous commit
git-svn-id: svn://localhost/ardour2/branches/3.0@12555 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_timefx.cc')
-rw-r--r--gtk2_ardour/editor_timefx.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/gtk2_ardour/editor_timefx.cc b/gtk2_ardour/editor_timefx.cc
index ab836a28f4..2f0b09ed17 100644
--- a/gtk2_ardour/editor_timefx.cc
+++ b/gtk2_ardour/editor_timefx.cc
@@ -144,7 +144,8 @@ int
Editor::time_fx (RegionList& regions, float val, bool pitching)
{
delete current_timefx;
- current_timefx = 0;
+ current_timefx = new TimeFXDialog (*this, pitching);
+ current_timefx->regions = regions;
/* See if we have any audio regions on our list */
RegionList::iterator i = regions.begin ();
@@ -158,9 +159,6 @@ Editor::time_fx (RegionList& regions, float val, bool pitching)
return 0;
}
- current_timefx = new TimeFXDialog (*this, pitching);
- current_timefx->regions = regions;
-
switch (current_timefx->run ()) {
case RESPONSE_ACCEPT:
break;