Show speaker in the spotlight in large grids

This commit is contained in:
Robin
2024-07-12 15:47:35 -04:00
parent 12b719da95
commit 183d2d9050
+3 -1
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,
}),
);