diff options
author | Robin Gareus <robin@gareus.org> | 2016-09-18 09:55:59 +0200 |
---|---|---|
committer | Robin Gareus <robin@gareus.org> | 2016-09-18 09:55:59 +0200 |
commit | 2e8621fdbfd65d2837674d5c90aee17068717959 (patch) | |
tree | 4f95f644d3f0f84f7c91e4f1f8d29c7158fbec63 /scripts/bounce_replace.lua | |
parent | eaa1dacf5fc9537cfff36e2339bd07aab348aa2e (diff) | |
download | ardour-2e8621fdbfd65d2837674d5c90aee17068717959.zip ardour-2e8621fdbfd65d2837674d5c90aee17068717959.tar.gz ardour-2e8621fdbfd65d2837674d5c90aee17068717959.tar.bz2 |
update script to follow libardour API change
Diffstat (limited to 'scripts/bounce_replace.lua')
-rw-r--r-- | scripts/bounce_replace.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bounce_replace.lua b/scripts/bounce_replace.lua index 07518a4..e33350b 100644 --- a/scripts/bounce_replace.lua +++ b/scripts/bounce_replace.lua @@ -44,7 +44,7 @@ function factory (params) return function () -- remove old region.. playlist:remove_region (r); -- ..and add the newly bounced one - playlist:add_region (region, r:position (), 1, false) + playlist:add_region (region, r:position (), 1, false, 0) -- create a diff of the performed work, add it to the session's undo stack -- and check if it is not empty |