From 3aba7c9b9393b65e8666cec4670cf537cb0023fb Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 14 Jun 2020 17:26:57 +0200 Subject: [PATCH] lint --- app/lib/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)