Typo in Lua comments: paramater

This commit is contained in:
BrunoVernay 2021-10-30 22:27:10 +02:00
parent e16ac4b036
commit 157af3ac4f
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ ardour { ["type"] = "Snippet", name = "Thin Fader Automation" }
-- --TODO--
-- For a fully fledged EditorAction this script should
-- offer a dropdown to select automation of all paramaters
-- offer a dropdown to select automation of all parameters
-- (not just the fader)
-- see scripts/midi_cc_to_automation.lua and
-- scripts/mixer_settings_store.lua

View File

@ -32,7 +32,7 @@ function factory () return function ()
-- unmute the track, this also examplifies how one could use lists to modify
-- multiple controllables at the same time (they should be of the same
-- paramater type - e.g. mute_control() of multiple tracks, they'll all
-- parameter type - e.g. mute_control() of multiple tracks, they'll all
-- change simultaneously in rt-context)
local ctrls = ARDOUR.ControlListPtr ()
ctrls:push_back (t:mute_control()) -- we could add more controls to change via push_back