mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
check if rv != nil, so it can still be run again if the user bails.
This commit is contained in:
parent
65e5152c6f
commit
7496f06fa3
1 changed files with 20 additions and 19 deletions
|
|
@ -17,33 +17,34 @@ function factory () return function ()
|
|||
}
|
||||
|
||||
local rv = LuaDialog.Dialog("Change all Meter Taps:", dialog_options):run()
|
||||
|
||||
meter_point = rv['select']
|
||||
if rv['select-tracks'] then
|
||||
local sel = Editor:get_selection ()
|
||||
for route in sel.tracks:routelist():iter() do
|
||||
if not(route:to_track():isnil()) then
|
||||
if rv['rec-tracks'] then
|
||||
if route:rec_enable_control():get_value() == 1.0 then
|
||||
if rv then
|
||||
meter_point = rv['select']
|
||||
if rv['select-tracks'] then
|
||||
local sel = Editor:get_selection ()
|
||||
for route in sel.tracks:routelist():iter() do
|
||||
if not(route:to_track():isnil()) then
|
||||
if rv['rec-tracks'] then
|
||||
if route:rec_enable_control():get_value() == 1.0 then
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
else
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
else
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
end
|
||||
end
|
||||
else
|
||||
for route in Session:get_routes():iter() do
|
||||
if not(route:to_track():isnil()) then
|
||||
if rv['rec-tracks'] then
|
||||
if route:rec_enable_control():get_value() == 1.0 then
|
||||
else
|
||||
for route in Session:get_routes():iter() do
|
||||
if not(route:to_track():isnil()) then
|
||||
if rv['rec-tracks'] then
|
||||
if route:rec_enable_control():get_value() == 1.0 then
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
else
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
else
|
||||
route:to_track():set_meter_point(meter_point, false)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
end end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue