better color choice for control master controls box in editor
[ardour.git] / scripts / rewind.lua
1 ardour {
2         ["type"]    = "EditorAction",
3         name        = "Rewind",
4         author      = "Ardour Lua Task Force",
5         description = [[An Example Ardour Editor Action Script.]]
6 }
7
8 function factory (params)
9         return function ()
10                 Session:goto_start()
11         end
12 end