1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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

This reverts commit 17f13459b6.
This commit is contained in:
sudden6 2016-02-27 14:51:30 +01:00
parent 17f13459b6
commit e5cc004edf

View File

@ -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);