Show speaker in the spotlight in large grids

This commit is contained in:
Robin
2024-06-07 11:48:58 -04:00
parent 12b719da95
commit 183d2d9050

View File

@@ -504,7 +504,9 @@ export class CallViewModel extends ViewModel {
(grid, spotlight, screenShares): Layout => ({
type: "grid",
spotlight:
screenShares.length > 0 ? spotlight : undefined,
screenShares.length > 0 || grid.length > 20
? spotlight
: undefined,
grid,
}),
);