Fix bottom stripe of speaker view with high DPI

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-11-09 07:15:36 +01:00
Родитель 57f6a80153
Коммит 267285ca1a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 74434EFE0D2E2205
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -351,6 +351,12 @@ export default {
},
dpiFactor() {
if (this.isStripe) {
// On the stripe we only ever want 1 row, so we ignore the DPR
// as the height of the grid is the height of the video elements then.
return 1.0
}
const devicePixelRatio = window.devicePixelRatio
// Some sanity check to not screw up the math.