diff --git a/app/lib/window.ts b/app/lib/window.ts index e3a8e4c3..cc1d4fac 100644 --- a/app/lib/window.ts +++ b/app/lib/window.ts @@ -133,7 +133,7 @@ export class Window { if (process.platform === 'win32') { if (parseFloat(os.release()) >= 10) { glasstron.update(this.window, { - windows: { blurType: enabled ? ((type === 'fluent') ? 'acrylic' : 'blurbehind') : null }, + windows: { blurType: enabled ? type === 'fluent' ? 'acrylic' : 'blurbehind' : null }, }) } else { DwmEnableBlurBehindWindow(this.window, enabled)