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