diff options
author | Robin Gareus <robin@gareus.org> | 2016-03-19 00:31:04 +0100 |
---|---|---|
committer | Robin Gareus <robin@gareus.org> | 2016-03-19 00:31:04 +0100 |
commit | 4135735590150d0a141f2c56fbe5cf462972448d (patch) | |
tree | 27b9d97ff29738cf8d561f7418e2703bd5c16338 /scripts/scope.lua | |
parent | d7a95b5b50a8bf9894a300450f8b3952e7e624a8 (diff) | |
download | ardour-4135735590150d0a141f2c56fbe5cf462972448d.zip ardour-4135735590150d0a141f2c56fbe5cf462972448d.tar.gz ardour-4135735590150d0a141f2c56fbe5cf462972448d.tar.bz2 |
fix some plugin control name typos
Diffstat (limited to 'scripts/scope.lua')
-rw-r--r-- | scripts/scope.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/scope.lua b/scripts/scope.lua index 961670a..4a00b07 100644 --- a/scripts/scope.lua +++ b/scripts/scope.lua @@ -17,9 +17,9 @@ end function dsp_params () return { - { ["type"] = "input", name = "timescale", min = .1, max = 5, default = 2, unit="sec", logarithmic = true }, - { ["type"] = "input", name = "loscale", min = 0, max = 1, default = 0, toggled = true }, - { ["type"] = "input", name = "height", min = 0, max = 3, default = 1, unit="dB", enum = true, scalepoints = + { ["type"] = "input", name = "Timescale", min = .1, max = 5, default = 2, unit="sec", logarithmic = true }, + { ["type"] = "input", name = "Logscale", min = 0, max = 1, default = 0, toggled = true }, + { ["type"] = "input", name = "Height", min = 0, max = 3, default = 1, unit="dB", enum = true, scalepoints = { ["Min"] = 0, ["16:10"] = 1, |