Skip to content

Commit 0fb3807

Browse files
committed
fix: dont do keyboard shortcuts when field editors open
1 parent 656624a commit 0fb3807

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/navigation.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,8 @@ export class Navigation {
825825
: workspace.keyboardAccessibilityMode;
826826
return (
827827
!!accessibilityMode &&
828-
this.getState(workspace) !== Constants.STATE.NOWHERE
828+
this.getState(workspace) !== Constants.STATE.NOWHERE &&
829+
!Blockly.getFocusManager().ephemeralFocusTaken()
829830
);
830831
}
831832

0 commit comments

Comments
 (0)