don't hide table

wilder-portage
Carl Schwan 5 years ago committed by Laurent Montel
parent 5045a775f0
commit 069d16f326
  1. 4
      src/filter/kmfilterdialog.cpp

@ -510,7 +510,7 @@ void KMFilterDialog::slotFilterSelected(MailFilter *aFilter)
mApplyOnAllFolders->setChecked(applyOnAllFolders);
mApplyOnForTraditional->setChecked(applyOnTraditional);
mApplyOnForChecked->setChecked(!applyOnForAll && !applyOnTraditional);
mAccountList->setVisible(mApplyOnForChecked->isEnabled() && mApplyOnForChecked->isChecked());
mAccountList->setEnabled(mApplyOnForChecked->isEnabled() && mApplyOnForChecked->isChecked());
slotUpdateAccountList();
mApplyBeforeOut->setChecked(applyBeforeOut);
mApplyOnOut->setChecked(applyOnOut);
@ -559,7 +559,7 @@ void KMFilterDialog::slotApplicabilityChanged()
mApplyOnForAll->setEnabled(mApplyOnIn->isChecked());
mApplyOnForTraditional->setEnabled(mApplyOnIn->isChecked());
mApplyOnForChecked->setEnabled(mApplyOnIn->isChecked());
mAccountList->setVisible(mApplyOnForChecked->isEnabled() && mApplyOnForChecked->isChecked());
mAccountList->setEnabled(mApplyOnForChecked->isEnabled() && mApplyOnForChecked->isChecked());
// Advanced tab functionality - Update list of accounts this filter applies to
if (!mApplyOnForAll->isChecked()) {

Loading…
Cancel
Save