Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
richtabor committed Jul 22, 2024
1 parent 763c991 commit ef669f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/block-editor/src/components/block-list/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function Root( { className, ...settings } ) {
} = unlock( select( blockEditorStore ) );
const { outlineMode, focusMode, isDistractionFree } = getSettings();
return {
isOutlineMode: outlineMode && ! isTyping() && ! isDistractionFree,
isOutlineMode: outlineMode && ! isDistractionFree && ! isTyping(),
isFocusMode: focusMode,
editorMode: __unstableGetEditorMode(),
temporarilyEditingAsBlocks: getTemporarilyEditingAsBlocks(),
Expand Down

0 comments on commit ef669f9

Please sign in to comment.