From bb145b4b5342415741009587b5e33f8ce2d7de09 Mon Sep 17 00:00:00 2001 From: Vesa Date: Wed, 12 Feb 2014 22:21:12 +0200 Subject: [PATCH] Higher range in gain knobs --- plugins/waveshaper/waveshaper_controls.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/waveshaper/waveshaper_controls.cpp b/plugins/waveshaper/waveshaper_controls.cpp index 244fc140d..1af27fe66 100644 --- a/plugins/waveshaper/waveshaper_controls.cpp +++ b/plugins/waveshaper/waveshaper_controls.cpp @@ -36,8 +36,8 @@ waveShaperControls::waveShaperControls( waveShaperEffect * _eff ) : EffectControls( _eff ), m_effect( _eff ), - m_inputModel( 1.0f, 0.0f, 2.0f, 0.01f, this, tr( "Input gain" ) ), - m_outputModel( 1.0f, 0.0f, 2.0f, 0.01f, this, tr( "Output gain" ) ), + m_inputModel( 1.0f, 0.0f, 5.0f, 0.01f, this, tr( "Input gain" ) ), + m_outputModel( 1.0f, 0.0f, 5.0f, 0.01f, this, tr( "Output gain" ) ), m_wavegraphModel( 0.0f, 1.0f, 200, this ) { connect( &m_inputModel, SIGNAL( dataChanged() ),