the test-audio button causes a local audio-loopback rather than a server one

This commit is contained in:
Seth Alves 2019-03-26 16:03:56 -07:00
parent 1d5f9cc0ec
commit 7d21222232

View file

@ -21,13 +21,13 @@ RowLayout {
function startAudioLoopback() {
if (!audioLoopedBack) {
audioLoopedBack = true;
AudioScriptingInterface.setServerEcho(true);
AudioScriptingInterface.setLocalEcho(true);
}
}
function stopAudioLoopback() {
if (audioLoopedBack) {
audioLoopedBack = false;
AudioScriptingInterface.setServerEcho(false);
AudioScriptingInterface.setLocalEcho(false);
}
}