Skip to content

Commit

Permalink
- disable looback audio when opening mic settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ritzalam committed Apr 10, 2013
1 parent ca37dd1 commit 4b5afe7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
Security.showSettings(SecurityPanel.PRIVACY);
} else {
// user has allowed access to the mic
mic.setLoopBack(true);
mic.setLoopBack(false);
mic.setUseEchoSuppression(true);
}
} else {
Expand Down Expand Up @@ -121,6 +121,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
if (settingBtn.selected) {
if (mic != null) {
mic.setLoopBack(true);
mic.setUseEchoSuppression(true);
}
Security.showSettings(SecurityPanel.MICROPHONE);
Expand Down

0 comments on commit 4b5afe7

Please sign in to comment.