13
0
livetrax/share/scripts/add_cdmarker.lua

8 lines
194 B
Lua
Raw Normal View History

2021-09-02 14:28:32 -04:00
ardour { ["type"] = "EditorAction", name = "Add CD marker" }
function
factory ()
return function ()
Editor:mouse_add_new_marker (Session:transport_sample(), Location.IsCDMarker)
2021-09-02 14:28:32 -04:00
end
end