From 016906fc9de6ba8fb256b00c539b007c9d79ca5f Mon Sep 17 00:00:00 2001 From: Vantz Stockwell Date: Wed, 25 Mar 2026 00:56:34 -0400 Subject: [PATCH] fix: add window/webview creation permissions for tool popup windows Tauri v2 ACL requires explicit permissions to create windows from the frontend. Added core:window:allow-create and core:webview:allow-create-webview-window so the Tools menu can open popup windows. Co-Authored-By: Claude Opus 4.6 (1M context) --- src-tauri/capabilities/default.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index bf0c95b..8d310dc 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -6,6 +6,9 @@ "core:default", "core:event:default", "core:window:default", + "core:window:allow-create", + "core:webview:default", + "core:webview:allow-create-webview-window", "shell:allow-open" ] }