Fixes
This commit is contained in:
parent
0abefa87aa
commit
f9d1003527
|
@ -274,7 +274,11 @@ export function setStageFilmstripViewDimensions() {
|
|||
const { numberOfVisibleTiles = MAX_ACTIVE_PARTICIPANTS } = tileView;
|
||||
const numberOfParticipants = state['features/filmstrip'].activeParticipants.length;
|
||||
const availableWidth = clientWidth - verticalWidth;
|
||||
const maxColumns = getMaxColumnCount(state, { width: availableWidth });
|
||||
const maxColumns = getMaxColumnCount(state, {
|
||||
width: availableWidth,
|
||||
disableResponsiveTiles: false,
|
||||
disableTileEnlargement: false
|
||||
});
|
||||
|
||||
const {
|
||||
height,
|
||||
|
|
|
@ -111,3 +111,12 @@ export function isReorderingEnabled(state) {
|
|||
export function isStageFilmstripAvailable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Whether the stage filmstrip should be displayed or not.
|
||||
*
|
||||
* @returns {boolean}
|
||||
*/
|
||||
export function shouldDisplayStageFilmstrip() {
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -9,8 +9,7 @@ import {
|
|||
getPinnedParticipant,
|
||||
getRemoteParticipants
|
||||
} from '../base/participants';
|
||||
import { isStageFilmstripAvailable } from '../filmstrip/functions';
|
||||
import { shouldDisplayStageFilmstrip } from '../filmstrip/functions.web';
|
||||
import { isStageFilmstripAvailable, shouldDisplayStageFilmstrip } from '../filmstrip/functions';
|
||||
|
||||
import {
|
||||
SELECT_LARGE_VIDEO_PARTICIPANT,
|
||||
|
|
Loading…
Reference in New Issue