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:
Jeff Emmett 2026-01-24 19:15:27 +01:00
parent 5dbcd1cec3
commit 6ed1edf82b
1 changed files with 8 additions and 0 deletions

View File

@ -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: {