mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
fixed 'hide dock on blur'
This commit is contained in:
parent
8f55333d23
commit
50c20f08f8
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue