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}
|
ref={ref}
|
||||||
{...rest}
|
{...rest}
|
||||||
>
|
>
|
||||||
{toolbarButtons.length > 0 && (
|
{toolbarButtons.length > 0 && !maximised && (
|
||||||
<div className={classNames(styles.toolbar)}>{toolbarButtons}</div>
|
<div className={classNames(styles.toolbar)}>{toolbarButtons}</div>
|
||||||
)}
|
)}
|
||||||
{videoMuted && (
|
{videoMuted && (
|
||||||
|
|
|
@ -109,7 +109,7 @@ export function VideoTileContainer({
|
||||||
onFullscreen={onFullscreenCallback}
|
onFullscreen={onFullscreenCallback}
|
||||||
{...rest}
|
{...rest}
|
||||||
/>
|
/>
|
||||||
{videoTileSettingsModalState.isOpen && (
|
{videoTileSettingsModalState.isOpen && !maximised && (
|
||||||
<VideoTileSettingsModal
|
<VideoTileSettingsModal
|
||||||
{...videoTileSettingsModalProps}
|
{...videoTileSettingsModalProps}
|
||||||
feed={item.callFeed}
|
feed={item.callFeed}
|
||||||
|
|
Loading…
Add table
Reference in a new issue