diff --git a/share/scripts/_split_benchmark.lua b/share/scripts/_split_benchmark.lua index 6ab60e44bc..8ed64e43f2 100644 --- a/share/scripts/_split_benchmark.lua +++ b/share/scripts/_split_benchmark.lua @@ -48,7 +48,7 @@ function factory (params) return function () end local t_end = ARDOUR.LuaAPI.monotonic_time () - Session:request_locate((playhead + step * n_steps), ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI) + Session:request_locate((playhead + step * n_steps), false, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI) print (count_regions (), (t_end - t_start) / 1000 / n_steps) collectgarbage (); ARDOUR.LuaAPI.usleep(500000) diff --git a/share/scripts/jump_to_marker.lua b/share/scripts/jump_to_marker.lua index 4e5305f6d6..0fa4259bae 100644 --- a/share/scripts/jump_to_marker.lua +++ b/share/scripts/jump_to_marker.lua @@ -27,7 +27,7 @@ function factory () return function () for l in Session:locations():list():iter() do if l:is_mark() and string.find (l:name(), "^" .. rv['marker'] .. ".*$") then - Session:request_locate (l:start (), ARDOUR.LocateTransportDisposition.RollIfAppropriate, ARDOUR.TransportRequestSource.TRS_UI) + Session:request_locate (l:start (), false, ARDOUR.LocateTransportDisposition.RollIfAppropriate, ARDOUR.TransportRequestSource.TRS_UI) if keep then goto restart end return end diff --git a/share/scripts/stop_at_marker.lua b/share/scripts/stop_at_marker.lua index a2f69ddd2f..8aac8ced7a 100644 --- a/share/scripts/stop_at_marker.lua +++ b/share/scripts/stop_at_marker.lua @@ -43,7 +43,7 @@ function factory () if (pos + n_samples >= m) then -- asking to locate to "m" ensures that playback continues at "m" -- and the same marker will not be taken into account. - Session:request_locate (m, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_Engine) + Session:request_locate (m, false, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_Engine) end end end diff --git a/share/scripts/tomsloop.lua b/share/scripts/tomsloop.lua index b762e27db6..78123635c6 100644 --- a/share/scripts/tomsloop.lua +++ b/share/scripts/tomsloop.lua @@ -258,7 +258,7 @@ function factory (params) return function () --advance playhead so it's just after the newly added regions if n_regions_created > 0 then - Session:request_locate (playhead + loop:length() * n_paste, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI) + Session:request_locate (playhead + loop:length() * n_paste, false, ARDOUR.LocateTransportDisposition.MustStop, ARDOUR.TransportRequestSource.TRS_UI) end -- all done, commit the combined Undo Operation