use ordered list of routes and fix some dialog box names

This commit is contained in:
Nikolaus Gullotta
2018-08-02 13:37:01 -05:00
parent 92b68a87d9
commit da27661dd4
2 changed files with 6 additions and 7 deletions

View File

@@ -174,7 +174,7 @@ function factory () return function ()
local groups_to_write = {}
local i = 0
local tracks = Session:get_routes()
local tracks = Session:get_stripables()
if selected then tracks = sel.tracks:routelist() end
@@ -212,10 +212,9 @@ function factory () return function ()
end
for r in tracks:iter() do
if r:is_monitor () or r:is_auditioner () then goto nextroute end -- skip special routes
print(r:name(), r:presentation_info_ptr():order())
if r:is_monitor () or r:is_auditioner () or not(r:to_vca():isnil()) then goto nextroute end -- skip special routes
r = r:to_route()
if r:isnil() then goto nextroute end
local order = ARDOUR.ProcessorList()
local x = 0
repeat