Skip to content
Snippets Groups Projects
Unverified Commit f623de4d authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #2115 from paulkaplan/fix-fullscreen-inputs

Hide block inputs when entering fullscreen mode
parents 59e6e1d1 a09c53d8
No related branches found
No related tags found
No related merge requests found
......@@ -445,7 +445,8 @@ Blocks.defaultProps = {
};
const mapStateToProps = state => ({
anyModalVisible: Object.keys(state.modals).some(key => state.modals[key]),
anyModalVisible: Object.keys(state.modals).some(key => state.modals[key]) ||
state.mode.isFullScreen,
extensionLibraryVisible: state.modals.extensionLibrary,
locale: state.intl.locale,
messages: state.intl.messages,
......
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