Fix new grid layout

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2023-07-03 10:03:24 +02:00
parent 238c93a242
commit 5255158090

View File

@@ -50,7 +50,11 @@ import {
RoomHeaderInfo,
VersionMismatchWarning,
} from "../Header";
import { useVideoGridLayout, TileDescriptor } from "../video-grid/VideoGrid";
import {
useVideoGridLayout,
TileDescriptor,
VideoGrid,
} from "../video-grid/VideoGrid";
import {
useShowInspector,
useShowConnectionStats,
@@ -245,7 +249,8 @@ export function InCallView({
[fullscreenItem, noControls, items]
);
const Grid = NewVideoGrid;
const Grid =
items.length > 12 && layout === "freedom" ? NewVideoGrid : VideoGrid;
const prefersReducedMotion = usePrefersReducedMotion();