Browse Source

fix(filmstrip): show video for screenshare participant in tile view

factor2
Calin-Teodor 2 years ago
parent
commit
d75ab7b246
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/filmstrip/components/native/Thumbnail.js

+ 1
- 1
react/features/filmstrip/components/native/Thumbnail.js View File

370
                     : <>
370
                     : <>
371
                         <ParticipantView
371
                         <ParticipantView
372
                             avatarSize = { tileView ? AVATAR_SIZE * 1.5 : AVATAR_SIZE }
372
                             avatarSize = { tileView ? AVATAR_SIZE * 1.5 : AVATAR_SIZE }
373
-                            disableVideo = { isScreenShare || _fakeParticipant }
373
+                            disableVideo = { !tileView && (isScreenShare || _fakeParticipant) }
374
                             participantId = { participantId }
374
                             participantId = { participantId }
375
                             zOrder = { 1 } />
375
                             zOrder = { 1 } />
376
                         {
376
                         {

Loading…
Cancel
Save