From 32445144e86b480757cf93969e39192370be3877 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 7 Jun 2024 11:48:58 -0400 Subject: [PATCH] Show speaker in the spotlight in large grids --- src/state/CallViewModel.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index fe2a84510..42b12432d 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -509,7 +509,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, }), );