13
0

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
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

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