diff --git a/src/services/window.ts b/src/services/window.ts index 1555d79ae..f15958676 100644 --- a/src/services/window.ts +++ b/src/services/window.ts @@ -132,9 +132,9 @@ function getWindowExtraOpts() { } // Window effects (Mica) - // TODO: Deduplicate with src/public/app/desktop.js#initTransparencyEffects - const isHorizontalLayout = (optionService.getOption("layoutOrientation") === "horizontal"); - extraOpts.backgroundMaterial = isHorizontalLayout ? "tabbed" : "mica"; + if (isWindows) { + extraOpts.backgroundMaterial = "auto"; + } return extraOpts; }