mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
11 lines
146 B
Lua
11 lines
146 B
Lua
|
|
ardour {
|
||
|
|
["type"] = "EditorAction",
|
||
|
|
name = "Rewind",
|
||
|
|
}
|
||
|
|
|
||
|
|
function factory (params)
|
||
|
|
return function ()
|
||
|
|
Session:goto_start()
|
||
|
|
end
|
||
|
|
end
|