make presentation area not visible when minimized
This commit is contained in:
parent
839d104fc5
commit
be10e25eef
@ -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()}
|
||||
|
@ -36,5 +36,6 @@ export default withTracker(({ podId }) => {
|
||||
notify,
|
||||
zoomSlide: PresentationToolbarService.zoomSlide,
|
||||
podId,
|
||||
layoutSwapped,
|
||||
};
|
||||
})(PresentationAreaContainer);
|
||||
|
Loading…
Reference in New Issue
Block a user