ardour/share/scripts/_rewind.lua

13 lines
235 B
Lua
Raw Normal View History

2016-02-23 15:44:41 +01:00
ardour {
["type"] = "EditorAction",
name = "Rewind",
2020-09-30 22:06:35 +02:00
author = "Ardour Team",
description = [[An Example Ardour Editor Action Script.]]
2016-02-23 15:44:41 +01:00
}
function factory (params)
return function ()
Session:goto_start()
end
end