diff --git a/app/lib/window.ts b/app/lib/window.ts index 43089901..f8c234b9 100644 --- a/app/lib/window.ts +++ b/app/lib/window.ts @@ -117,7 +117,7 @@ export class Window { }) this.window.on('blur', () => { - if (this.configStore.appearance?.dock !== 'off' && this.configStore.appearance?.dockHideOnBlur) { + if ((this.configStore.appearance?.dock ?? 'off') !== 'off' && this.configStore.appearance?.dockHideOnBlur) { this.hide() } })