make presentation area not visible when minimized

This commit is contained in:
KDSBrowne 2020-05-25 14:12:56 +00:00
parent 839d104fc5
commit be10e25eef
2 changed files with 3 additions and 0 deletions

View File

@ -405,6 +405,7 @@ class PresentationArea extends PureComponent {
currentSlide,
slidePosition,
userIsPresenter,
layoutSwapped,
} = this.props;
const {
@ -457,6 +458,7 @@ class PresentationArea extends PureComponent {
width: svgDimensions.width,
height: svgDimensions.height,
textAlign: 'center',
display: layoutSwapped ? 'none' : 'block',
}}
>
{this.renderPresentationClose()}

View File

@ -36,5 +36,6 @@ export default withTracker(({ podId }) => {
notify,
zoomSlide: PresentationToolbarService.zoomSlide,
podId,
layoutSwapped,
};
})(PresentationAreaContainer);