fix(rn,filmstrip) avoid "red" screen sharing tile
Mobile does not render screen-shares in tiles for performance reasons. This coincidentally fixes the "red" tile that was attempted to be rendered when the local partitipant started screen-sharing.
This commit is contained in:
parent
bebcc8234f
commit
5fbf741278
|
@ -387,7 +387,7 @@ class Thumbnail extends PureComponent<Props> {
|
||||||
: <>
|
: <>
|
||||||
<ParticipantView
|
<ParticipantView
|
||||||
avatarSize = { tileView ? AVATAR_SIZE * 1.5 : AVATAR_SIZE }
|
avatarSize = { tileView ? AVATAR_SIZE * 1.5 : AVATAR_SIZE }
|
||||||
disableVideo = { (isScreenShare && !_isVirtualScreenshare) || _isFakeParticipant }
|
disableVideo = { isScreenShare || _isFakeParticipant }
|
||||||
participantId = { participantId }
|
participantId = { participantId }
|
||||||
zOrder = { 1 } />
|
zOrder = { 1 } />
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue