From 7cfa888a9e0318b24f3ceee9dbe005e59440cd41 Mon Sep 17 00:00:00 2001 From: JulySong Date: Fri, 21 Feb 2025 14:57:42 +0800 Subject: [PATCH] chore: fix bug where Follow window always stays on top (#2837) --- apps/main/src/window.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/main/src/window.ts b/apps/main/src/window.ts index d1add6ba3..0a7265513 100644 --- a/apps/main/src/window.ts +++ b/apps/main/src/window.ts @@ -41,6 +41,7 @@ export function createWindow( show: false, resizable: configs?.resizable ?? true, autoHideMenuBar: true, + alwaysOnTop: false, webPreferences: { preload: path.join(__dirname, "../preload/index.mjs"), sandbox: false,