From fd3a4cc2415479d6032bd5ea73ef0e261b824ca4 Mon Sep 17 00:00:00 2001 From: Donovan Hutchence Date: Wed, 30 Oct 2024 11:46:36 +0000 Subject: [PATCH] fix input --- src/ui/editor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/editor.ts b/src/ui/editor.ts index 34f0b7f..5e4760f 100644 --- a/src/ui/editor.ts +++ b/src/ui/editor.ts @@ -185,7 +185,7 @@ class EditorUI { if (event.target === canvas || toolsContainer.dom.contains(event.target as Node)) { document.body.focus(); } - }); + }, true); } }