From 22d46edbbe6b9a0ab37ec4cd825856d1477f3fe5 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 04:41:08 +0200 Subject: [PATCH] Ensure blurActiveTextEntry is called before setting selection --- src/app/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/App.tsx b/src/app/App.tsx index cebcc6ac..00680e52 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -523,6 +523,7 @@ export function App({ store, initialStatusMessage }: AppProps) { source: "outliner" | "viewport" | "inspector" | "runner", options: { focusViewport?: boolean } = {} ) => { + blurActiveTextEntry(); store.setSelection(selection); const suffix = source === "outliner" && options.focusViewport ? " and framed it in the viewport" : "";