1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-23 10:32:29 +03:00

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 <matheus@castello.eng.br>
This commit is contained in:
Matheus Castello 2022-03-08 02:48:56 -03:00
parent 1bb5128729
commit 502f72ec35

View File

@ -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)