|
|
@@ -301,10 +301,11 @@ const Filmstrip = {
|
|
301
|
301
|
const initialWidth = viewWidth / columns;
|
|
302
|
302
|
const aspectRatioHeight = initialWidth / tileAspectRatio;
|
|
303
|
303
|
|
|
304
|
|
- const heightOfEach = Math.min(
|
|
|
304
|
+ const heightOfEach = Math.floor(Math.min(
|
|
305
|
305
|
aspectRatioHeight,
|
|
306
|
|
- viewHeight / visibleRows);
|
|
307
|
|
- const widthOfEach = tileAspectRatio * heightOfEach;
|
|
|
306
|
+ viewHeight / visibleRows
|
|
|
307
|
+ ));
|
|
|
308
|
+ const widthOfEach = Math.floor(tileAspectRatio * heightOfEach);
|
|
308
|
309
|
|
|
309
|
310
|
return {
|
|
310
|
311
|
localVideo: {
|