From 502f72ec35a4576a42cce0414d6e3a41d007f803 Mon Sep 17 00:00:00 2001 From: Matheus Castello Date: Tue, 8 Mar 2022 02:48:56 -0300 Subject: [PATCH] Does not disable acrylic while dragging when using fluent It doesn't seem necessary to disable acrylic while dragging when using fluent with glasstron 0.1.1 Signed-off-by: Matheus Castello --- 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 6143e8a2..b952c471 100644 --- a/app/lib/window.ts +++ b/app/lib/window.ts @@ -420,7 +420,7 @@ export class Window { let moveEndedTimeout: any = null const onBoundsChange = () => { - if (!this.lastVibrancy?.enabled || !this.disableVibrancyWhileDragging || !this.isFluentVibrancy) { + if (!this.lastVibrancy?.enabled || !this.disableVibrancyWhileDragging || this.isFluentVibrancy) { return } this.setVibrancy(false, undefined, false)