From 021baa76e133db3211cf6d35fc22fa519e5315df Mon Sep 17 00:00:00 2001 From: lindenkron Date: Sat, 15 Apr 2023 19:43:17 +0200 Subject: [PATCH] Fix over-correction of `Disable Video` --- lib.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib.js b/lib.js index a351f84..436b279 100644 --- a/lib.js +++ b/lib.js @@ -17490,7 +17490,7 @@ function gotDevices(deviceInfos, miconly=false) { } option = document.createElement('option'); - option.text = "Video on"; + option.text = "Disable Video"; option.value = "ZZZ"; videoSelect.appendChild(option); // NO AUDIO OPTION @@ -18069,7 +18069,7 @@ function gotDevices2(deviceInfos) { } var option = document.createElement('option'); // no video - option.text = "Video on"; + option.text = "Disable Video"; option.value = "ZZZ"; videoSelect.appendChild(option); @@ -24387,8 +24387,8 @@ function updateDirectorsAudio(dataN, UUID) { //input.dataset.labelname = "mic delay (ms):"; label.innerText = capitalizeFirstLetter(i).replace(/([a-z])([A-Z])/g, '$1 $2') + " (ms):"; - var manualInput = document.createElement("input"); + var manualInput = document.createElement("input"); manualInput.type = "number"; manualInput.dataset.keyname = i; manualInput.value = parseFloat(input.value);