From: Robin Gareus Date: Sat, 27 Aug 2016 17:56:08 +0000 (+0200) Subject: notch-bank: increase max Q, use logscale X-Git-Tag: 5.2~4 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=36a0ddd9e4650c9eafea6944b3b2e95471a3d1c8 notch-bank: increase max Q, use logscale --- diff --git a/scripts/_notch_bank.lua b/scripts/_notch_bank.lua index e90b028b92..d5662c72f6 100644 --- a/scripts/_notch_bank.lua +++ b/scripts/_notch_bank.lua @@ -19,7 +19,7 @@ function dsp_params () return { { ["type"] = "input", name = "Base Freq", min = 10, max = 1000, default = 100, unit="Hz", logarithmic = true }, - { ["type"] = "input", name = "Quality", min = 1.0, max = 16.0, default = 8.0 }, + { ["type"] = "input", name = "Quality", min = 1.0, max = 100.0, default = 8.0, logarithmic = true }, { ["type"] = "input", name = "Stages", min = 1.0, max = 100, default = 8.0, integer = true }, } end