Browse Source

Revert "disable filteraudio, because it makes audio quality worse"

This reverts commit 17f13459b6.
pull/2979/head
sudden6 10 years ago
parent
commit
e5cc004edf
  1. 5
      src/widget/form/settings/avform.cpp

5
src/widget/form/settings/avform.cpp

@ -46,16 +46,13 @@ AVForm::AVForm() : @@ -46,16 +46,13 @@ AVForm::AVForm() :
bodyUI->btnPlayTestSound->setToolTip(
tr("Play a test sound while changing the output volume."));
#ifdef QTOX_FILTER_AUDIO
bodyUI->filterAudio->setChecked(Settings::getInstance().getFilterAudio());
#else
bodyUI->filterAudio->setDisabled(true);
#endif
// temporary remove audio filtering, because it makes audio quality worse
Settings::getInstance().setFilterAudio(false);
bodyUI->filterAudio->hide();
auto qcbxIndexChangedStr = (void(QComboBox::*)(const QString&)) &QComboBox::currentIndexChanged;
auto qcbxIndexChangedInt = (void(QComboBox::*)(int)) &QComboBox::currentIndexChanged;
connect(bodyUI->inDevCombobox, qcbxIndexChangedStr, this, &AVForm::onInDevChanged);

Loading…
Cancel
Save