fixed wrong signal-slot-connection which made gate-parameter of effects not working

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/branches/lmms/stable-0.3@629 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2007-12-26 14:17:35 +00:00
parent c317e60b83
commit 5df52a588c
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2007-12-26 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
* src/widgets/rack_plugin.cpp:
fixed wrong signal-slot-connection which made gate-parameter of
effects not working
2007-12-17 Paul Wayper <paulway/at/mabula/dot/net>
* src/core/main_window.cpp:

View File

@@ -141,7 +141,7 @@ rackPlugin::rackPlugin( QWidget * _parent,
"run the risk of clipping the tail on delay effects." ) );
m_gate = new knob( knobBright_26, this, tr( "Gate" ), m_track );
connect( m_wetDry, SIGNAL( valueChanged( float ) ),
connect( m_gate, SIGNAL( valueChanged( float ) ),
this, SLOT( setGate( float ) ) );
m_gate->setLabel( tr( "Gate" ) );
m_gate->setRange( 0.0f, 1.0f, 0.01f );