From 94e20c44e5d9ba13177e31be985397b549c2e723 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 22 Sep 2025 18:45:45 +0300 Subject: [PATCH] fix(desktop): background effects always on --- apps/server/src/routes/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/routes/index.ts b/apps/server/src/routes/index.ts index 69daeb680..430c27d0f 100644 --- a/apps/server/src/routes/index.ts +++ b/apps/server/src/routes/index.ts @@ -43,7 +43,7 @@ function index(req: Request, res: Response) { platform: process.platform, isElectron, hasNativeTitleBar: isElectron && nativeTitleBarVisible, - hasBackgroundEffects: isElectron && isWindows11 && !nativeTitleBarVisible, + hasBackgroundEffects: isElectron && isWindows11 && !nativeTitleBarVisible && options.backgroundEffects === "true", mainFontSize: parseInt(options.mainFontSize), treeFontSize: parseInt(options.treeFontSize), detailFontSize: parseInt(options.detailFontSize),