ardour/share/scripts/_rewind.lua
2020-09-30 22:06:35 +02:00

12 lines
235 B
Lua

ardour {
["type"] = "EditorAction",
name = "Rewind",
author = "Ardour Team",
description = [[An Example Ardour Editor Action Script.]]
}
function factory (params)
return function ()
Session:goto_start()
end
end