make Selection::set (TrackViewList*) more efficient and emit less PI::Change signals
[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