Create add_cdmarker.lua

This commit is contained in:
ElizabethHarmon
2021-09-02 11:28:32 -07:00
committed by Robin Gareus
parent c74f80caa4
commit 08e22fdb4b

View File

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