Update call view icons

This commit is contained in:
ayumi-signal 2024-11-13 09:39:43 -08:00 committed by GitHub
parent 5762c8a37f
commit be8da842b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 23 additions and 21 deletions

View file

@ -164,7 +164,7 @@ const createActiveCallProp = (
hasLocalAudio: overrideProps.hasLocalAudio ?? false,
hasLocalVideo: overrideProps.hasLocalVideo ?? false,
localAudioLevel: overrideProps.localAudioLevel ?? 0,
viewMode: overrideProps.viewMode ?? CallViewMode.Overflow,
viewMode: overrideProps.viewMode ?? CallViewMode.Sidebar,
outgoingRing: true,
pip: false,
settingsDialogOpen: false,
@ -450,7 +450,7 @@ export function GroupCallManyOverflow(): JSX.Element {
{...createProps({
callMode: CallMode.Group,
remoteParticipants: allRemoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})}
/>
);
@ -461,7 +461,7 @@ export function GroupCallManyOverflowEveryoneTalking(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants: allRemoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})
);
@ -668,7 +668,7 @@ export function GroupCallReactions(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})
);
@ -685,7 +685,7 @@ export function GroupCallReactionsSpam(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})
);
@ -703,7 +703,7 @@ export function GroupCallReactionsSkinTones(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})
);
@ -731,7 +731,7 @@ export function GroupCallReactionsManyInOrder(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
reactions,
})
);
@ -790,7 +790,7 @@ export function GroupCallHandRaising(): JSX.Element {
createProps({
callMode: CallMode.Group,
remoteParticipants,
viewMode: CallViewMode.Overflow,
viewMode: CallViewMode.Sidebar,
})
);