We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2b15e commit c4be140Copy full SHA for c4be140
src/navigation_controller.ts
@@ -18,6 +18,7 @@ import {
18
Toolbox,
19
utils as BlocklyUtils,
20
WorkspaceSvg,
21
+ keyboardNavigationController,
22
} from 'blockly/core';
23
24
import * as Constants from './constants';
@@ -198,6 +199,7 @@ export class NavigationController {
198
199
preconditionFn: (workspace) =>
200
!workspace.isDragging() && this.navigation.canCurrentlyEdit(workspace),
201
callback: (workspace) => {
202
+ keyboardNavigationController.setIsActive(true);
203
switch (this.navigation.getState(workspace)) {
204
case Constants.STATE.WORKSPACE:
205
Blockly.getFocusManager().focusTree(
0 commit comments