ardour/share/scripts/add_cdmarker.lua
2021-09-02 20:45:56 +02:00

8 lines
179 B
Lua

ardour { ["type"] = "EditorAction", name = "Add CD marker" }
function
factory ()
return function ()
Editor:mouse_add_new_marker (Session:transport_sample(), true)
end
end