From 42be187182ac1e15e0760d47a698c17457f87c06 Mon Sep 17 00:00:00 2001 From: Robin Date: Fri, 1 Nov 2024 11:25:55 -0400 Subject: [PATCH] Explain why speaking indicators are hidden --- src/state/CallViewModel.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/state/CallViewModel.ts b/src/state/CallViewModel.ts index a9893f43..c668e863 100644 --- a/src/state/CallViewModel.ts +++ b/src/state/CallViewModel.ts @@ -722,7 +722,11 @@ export class CallViewModel extends ViewModel { // speaking indicators as they're a redundant visual cue. But if // screen sharing feeds are in the spotlight we still need them. return l.spotlight[0] instanceof ScreenShareViewModel; + // In expanded spotlight layout, the active speaker is always shown in + // the picture-in-picture tile so there is no need for speaking + // indicators case "spotlight-expanded": + // In one-on-one layout there's no question as to who is speaking case "one-on-one": return false; default: