Merge pull request #599 from robintown/simplify-maximised
Further simplify the maximised speaker view
This commit is contained in:
commit
ae66e4b3f8
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ export const VideoTile = forwardRef<HTMLDivElement, Props>(
|
|||
ref={ref}
|
||||
{...rest}
|
||||
>
|
||||
{toolbarButtons.length > 0 && (
|
||||
{toolbarButtons.length > 0 && !maximised && (
|
||||
<div className={classNames(styles.toolbar)}>{toolbarButtons}</div>
|
||||
)}
|
||||
{videoMuted && (
|
||||
|
|
|
@ -109,7 +109,7 @@ export function VideoTileContainer({
|
|||
onFullscreen={onFullscreenCallback}
|
||||
{...rest}
|
||||
/>
|
||||
{videoTileSettingsModalState.isOpen && (
|
||||
{videoTileSettingsModalState.isOpen && !maximised && (
|
||||
<VideoTileSettingsModal
|
||||
{...videoTileSettingsModalProps}
|
||||
feed={item.callFeed}
|
||||
|
|
Loading…
Reference in a new issue