Skip to content

Commit

Permalink
Merge pull request #4217: Fixed infinite loop caused by #4215
Browse files Browse the repository at this point in the history
Avoid infinite signal loop triggered by checking the value of the combo box -> setting the value of combo box -> checking the value of the combo box -> setting the value of combo box -> checking the value of the combo box -> setting the value of combo box...
  • Loading branch information
Krzmbrzl authored May 29, 2020
2 parents 663fe98 + df7b77e commit 50aea07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mumble/AudioConfigDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ void AudioInputDialog::updateEchoEnableState() {
"the echo canceller, while multichannel echo cancellation passes all audio channels to the echo canceller directly.\n"
"Multichannel echo cancellation requires more CPU, so you should try mixed first"));
} else {
loadComboBox(qcbEcho, 0);
qcbEcho->setCurrentIndex(0);
qcbEcho->setEnabled(false);
qcbEcho->setToolTip(QObject::tr("Echo cancellation is not supported for the interface "
"combination \"%1\" (in) and \"%2\" (out).").arg(air->name).arg(outputInterface));
Expand Down

0 comments on commit 50aea07

Please sign in to comment.