1
Fork 0

Set default resolution to 640x400.

We used to accept the browser's default, which varied widely
between devices.
This commit is contained in:
Juliusz Chroboczek 2023-11-04 22:58:15 +01:00
parent e4682ff283
commit ff28e33d74
1 changed files with 3 additions and 0 deletions

View File

@ -1402,6 +1402,9 @@ async function addLocalMedia(localId) {
} else if(settings.blackboardMode) {
video.width = { min: 640, ideal: 1920 };
video.height = { min: 400, ideal: 1080 };
} else {
video.width = { ideal: 640 };
video.height = { ideal: 400 };
}
}