fix luabindings for Editor.mouse_add_new_marker(), since API changed

This commit is contained in:
Paul Davis 2022-01-04 15:23:43 -07:00
parent b1f73d25bf
commit 8a49d274fb
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,6 @@ ardour { ["type"] = "EditorAction", name = "Add CD marker" }
function
factory ()
return function ()
Editor:mouse_add_new_marker (Session:transport_sample(), true)
Editor:mouse_add_new_marker (Session:transport_sample(), Location.IsCDMarker)
end
end