From f85294e6038756109441c00229d7acc5bfe01536 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Tue, 5 Apr 2022 09:21:04 +0200 Subject: [PATCH] fixed disableVibrancyWhileDragging check --- 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 2f2136a8..4e623beb 100644 --- a/app/lib/window.ts +++ b/app/lib/window.ts @@ -415,7 +415,7 @@ export class Window { this.window.webContents.on('new-window', event => event.preventDefault()) ipcMain.on('window-set-disable-vibrancy-while-dragging', (_event, value) => { - this.disableVibrancyWhileDragging = value && this.configStore.hacks.disableVibrancyWhileDragging + this.disableVibrancyWhileDragging = value && this.configStore.hacks?.disableVibrancyWhileDragging }) let moveEndedTimeout: any = null