Browse Source

fix(filmstrip): hide screenshare indicator if not screen sharing

factor2
Calin-Teodor 2 years ago
parent
commit
ba57b1afff
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

@@ -221,7 +221,7 @@ class Thumbnail extends PureComponent<Props> {
221 221
                 style = { styles.thumbnailTopLeftIndicatorContainer }>
222 222
                 { !_isVirtualScreenshare && <ConnectionIndicator participantId = { participantId } /> }
223 223
                 { !_isVirtualScreenshare && <RaisedHandIndicator participantId = { participantId } /> }
224
-                { tileView && !isScreenShare && (
224
+                { tileView && (isScreenShare || _isVirtualScreenshare) && (
225 225
                     <View style = { styles.screenShareIndicatorContainer }>
226 226
                         <ScreenShareIndicator />
227 227
                     </View>

Loading…
Cancel
Save