From f6c0e48a50356918b128df2e39ad7edbcab6e429 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Mon, 21 Oct 2013 17:30:44 -0700 Subject: [PATCH] Mixer: Fix law hint on gain and aux module controls. --- mixer/src/AUX_Module.C | 2 +- mixer/src/Gain_Module.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mixer/src/AUX_Module.C b/mixer/src/AUX_Module.C index 79ce0fb..d8aa58e 100644 --- a/mixer/src/AUX_Module.C +++ b/mixer/src/AUX_Module.C @@ -33,7 +33,7 @@ AUX_Module::AUX_Module ( ) : JACK_Module ( false ) { Port p( this, Port::INPUT, Port::CONTROL, "Gain (dB)" ); - p.hints.type = Port::Hints::LOGARITHMIC; + p.hints.type = Port::Hints::LINEAR; p.hints.ranged = true; p.hints.minimum = -70.0f; p.hints.maximum = 6.0f; diff --git a/mixer/src/Gain_Module.C b/mixer/src/Gain_Module.C index cb8a123..ecd5fe1 100644 --- a/mixer/src/Gain_Module.C +++ b/mixer/src/Gain_Module.C @@ -32,7 +32,7 @@ Gain_Module::Gain_Module ( ) { Port p( this, Port::INPUT, Port::CONTROL, "Gain (dB)" ); - p.hints.type = Port::Hints::LOGARITHMIC; + p.hints.type = Port::Hints::LINEAR; p.hints.ranged = true; p.hints.minimum = -70.0f; p.hints.maximum = 6.0f;