mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
7 lines
227 B
Lua
7 lines
227 B
Lua
ardour { ["type"] = "EditorAction", name = "Add CD marker" }
|
|
function
|
|
factory ()
|
|
return function ()
|
|
Editor:add_location_mark (Temporal.timepos_t (Session:transport_sample()), ARDOUR.LocationFlags.IsCDMarker, 0)
|
|
end
|
|
end
|