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 2d7dc65 commit 96f7ff7Copy full SHA for 96f7ff7
src/toolbox/toolbox_robot.ts
@@ -1,5 +1,6 @@
1
import * as common from './toolbox_common'
2
import {category as hardwareCategory} from './hardware_category';
3
+ import {category as eventCategory} from './event_category';
4
5
export function getToolboxJSON(
6
shownPythonToolboxCategories: Set<string> | null) {
@@ -8,6 +9,7 @@
8
9
kind: 'categoryToolbox',
10
contents: [
11
hardwareCategory,
12
+ eventCategory,
13
{ kind: 'sep' },
14
...common.getToolboxItems(shownPythonToolboxCategories)
15
]
0 commit comments