Promote speakers to the first page of the grid

This commit is contained in:
Robin Townsend
2023-06-18 11:32:21 -04:00
parent 4e5a75074a
commit ddeb36db47
5 changed files with 36 additions and 1 deletions

View File

@@ -216,6 +216,7 @@ export function InCallView({
focused: screenshareFeeds.length === 0 && callFeed === activeSpeaker,
isLocal: member.userId === localUserId && deviceId === localDeviceId,
presenter,
isSpeaker: callFeed === activeSpeaker,
largeBaseSize: false,
connectionState,
});
@@ -244,6 +245,7 @@ export function InCallView({
focused: true,
isLocal: screenshareFeed.isLocal(),
presenter: false,
isSpeaker: screenshareFeed === activeSpeaker,
largeBaseSize: true,
placeNear: `${member.userId} ${deviceId}`,
connectionState,