Skip to content
Snippets Groups Projects
Unverified Commit 2d88c8d5 authored by Dixon Fred's avatar Dixon Fred Committed by GitHub
Browse files

Merge pull request #9685 from KDSBrowne/dev2.3-minimize-presentation

Make presentation area not visible when minimized
parents 22f88bf8 29609273
No related branches found
No related tags found
No related merge requests found
......@@ -421,6 +421,7 @@ class PresentationArea extends PureComponent {
currentSlide,
slidePosition,
userIsPresenter,
layoutSwapped,
} = this.props;
const {
......@@ -473,6 +474,7 @@ class PresentationArea extends PureComponent {
width: svgDimensions.width,
height: svgDimensions.height,
textAlign: 'center',
display: layoutSwapped ? 'none' : 'block',
}}
>
{this.renderPresentationClose()}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment