Commit 7939c3e5 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: Compressor/Spatializer: missing signal routing

parent ad218763
......@@ -1313,6 +1313,7 @@ Compressor::Compressor( intf_thread_t *_p_intf, QWidget *_parent )
compressorBox->setChecked( true );
else
compressorBox->setChecked( false );
CONNECT( compressorBox, toggled(bool), this, enable() );
free( psz_af );
updateSliders();
......@@ -1433,6 +1434,7 @@ Spatializer::Spatializer( intf_thread_t *_p_intf, QWidget *_parent )
spatializerBox->setChecked( true );
else
spatializerBox->setChecked( false );
CONNECT( spatializerBox, toggled(bool), this, enable() );
free( psz_af );
setValues();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment