NO-OP: remove trailing whitespace

This commit is contained in:
Robin Gareus 2020-04-16 16:53:48 +02:00
parent bb62f7eaec
commit 87626e0bdd
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -301,7 +301,7 @@ function factory () return function ()
local id = proc:to_stateful():id():to_s() local id = proc:to_stateful():id():to_s()
local plug = proc:to_insert ():plugin (0) local plug = proc:to_insert ():plugin (0)
local ptype = proc:to_insert():plugin(0):get_info().type local ptype = proc:to_insert():plugin(0):get_info().type
local n = 0 local n = 0
for j = 0, plug:parameter_count() - 1 do -- Iterate over all plugin parameters for j = 0, plug:parameter_count() - 1 do -- Iterate over all plugin parameters
if plug:parameter_is_control(j) then if plug:parameter_is_control(j) then
@ -314,15 +314,15 @@ function factory () return function ()
if val < pd.lower then if val < pd.lower then
val = pd.lower val = pd.lower
end end
if val > pd.upper then if val > pd.upper then
val = pd.upper val = pd.upper
end end
print(r:name(), "->", proc:display_name(), "(#".. n ..")", label, val) print(r:name(), "->", proc:display_name(), "(#".. n ..")", label, val)
params[n] = val params[n] = val
end end
n = n + 1 n = n + 1
end end
end end
i = i + 1 i = i + 1