13
0
livetrax/share/scripts/add_cdmarker.lua

8 lines
227 B
Lua
Raw Permalink Normal View History

2021-09-02 14:28:32 -04:00
ardour { ["type"] = "EditorAction", name = "Add CD marker" }
function
factory ()
return function ()
2024-11-03 08:05:36 -05:00
Editor:add_location_mark (Temporal.timepos_t (Session:transport_sample()), ARDOUR.LocationFlags.IsCDMarker, 0)
2021-09-02 14:28:32 -04:00
end
end