hide mixer group tabs when spilling control master slaves
[ardour.git] / scripts / rewind.lua
1 ardour {
2         ["type"]    = "EditorAction",
3         name        = "Rewind",
4 }
5
6 function factory (params)
7         return function ()
8                 Session:goto_start()
9         end
10 end