ardour/share/scripts/_rewind.lua

13 lines
235 B
Lua
Raw Normal View History

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