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:
@@ -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:
|
||||
|
||||
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user