From 6cc07faac4bd4b0fd6b5abe7d4add8034a1d60d0 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Thu, 19 Mar 2026 08:48:20 +0100 Subject: [PATCH] fix: use lowercase titleBarStyle for Tauri v2 WebviewWindow Co-Authored-By: Claude Opus 4.6 (1M context) --- src/utils/openNoteWindow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/openNoteWindow.ts b/src/utils/openNoteWindow.ts index 8104d73a..a8348d52 100644 --- a/src/utils/openNoteWindow.ts +++ b/src/utils/openNoteWindow.ts @@ -17,7 +17,7 @@ export async function openNoteInNewWindow(notePath: string, vaultPath: string, n width: 800, height: 700, resizable: true, - titleBarStyle: 'Overlay', + titleBarStyle: 'overlay', hiddenTitle: true, }) }