Don't show video mute icon for peer that does not have video visible. Fixes #302
parent
ce8141eed7
commit
16a59f1167
|
|
@ -126,7 +126,7 @@ const ListPeer = (props) =>
|
|||
<RecordVoiceOverIcon />
|
||||
</IconButton>
|
||||
}
|
||||
{ screenConsumer &&
|
||||
{ screenConsumer && spotlight &&
|
||||
<Tooltip
|
||||
title={intl.formatMessage({
|
||||
id : 'tooltip.muteScreenSharing',
|
||||
|
|
@ -159,6 +159,7 @@ const ListPeer = (props) =>
|
|||
</IconButton>
|
||||
</Tooltip>
|
||||
}
|
||||
{ spotlight &&
|
||||
<Tooltip
|
||||
title={intl.formatMessage({
|
||||
id : 'tooltip.muteParticipantVideo',
|
||||
|
|
@ -190,6 +191,7 @@ const ListPeer = (props) =>
|
|||
}
|
||||
</IconButton>
|
||||
</Tooltip>
|
||||
}
|
||||
<Tooltip
|
||||
title={intl.formatMessage({
|
||||
id : 'tooltip.muteParticipant',
|
||||
|
|
|
|||
Loading…
Reference in New Issue