fix: add missing BlenderGen tool definition to context menu
BlenderGen was registered as a tool but missing from overrides.tsx, causing an empty space in the context menu between VideoGen and Markdown. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
5dbcd1cec3
commit
6ed1edf82b
|
|
@ -228,6 +228,14 @@ export const overrides: TLUiOverrides = {
|
|||
readonlyOk: true,
|
||||
onSelect: () => editor.setCurrentTool("VideoGen"),
|
||||
},
|
||||
BlenderGen: {
|
||||
id: "BlenderGen",
|
||||
icon: "box",
|
||||
label: "Blender 3D",
|
||||
kbd: "ctrl+shift+b",
|
||||
readonlyOk: true,
|
||||
onSelect: () => editor.setCurrentTool("BlenderGen"),
|
||||
},
|
||||
// Drawfast - only available in dev (must match ENABLE_DRAWFAST flag in Board.tsx)
|
||||
...(ENABLE_DRAWFAST ? {
|
||||
Drawfast: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue