diff --git a/configuredialog.cpp b/configuredialog.cpp index 66c16cc5a..be46738cc 100644 --- a/configuredialog.cpp +++ b/configuredialog.cpp @@ -1481,6 +1481,7 @@ AppearancePageColorsTab::AppearancePageColorsTab( QWidget * parent ) mCloseToQuotaThreshold->setSingleStep( 1 ); connect( mCloseToQuotaThreshold, SIGNAL( valueChanged( int ) ), this, SLOT( slotEmitChanged( void ) ) ); + mCloseToQuotaThreshold->setEnabled( false ); mCloseToQuotaThreshold->setSuffix( i18n("%")); hbox->addWidget( mCloseToQuotaThreshold ); hbox->addWidget( new QWidget(this), 2 ); @@ -1492,6 +1493,8 @@ AppearancePageColorsTab::AppearancePageColorsTab( QWidget * parent ) mRecycleColorCheck, SLOT(setEnabled(bool)) ); connect( mCustomColorCheck, SIGNAL(toggled(bool)), l, SLOT(setEnabled(bool)) ); + connect( mCustomColorCheck, SIGNAL(toggled(bool)), + mCloseToQuotaThreshold, SLOT(setEnabled(bool)) ); connect( mCustomColorCheck, SIGNAL( stateChanged( int ) ), this, SLOT( slotEmitChanged( void ) ) );