mirror of
https://github.com/Eugeny/tabby.git
synced 2025-08-29 12:41:51 +00:00
only hide on blur when docking is enabled - fixes #3782
This commit is contained in:
@@ -117,7 +117,7 @@ export class Window {
|
|||||||
})
|
})
|
||||||
|
|
||||||
this.window.on('blur', () => {
|
this.window.on('blur', () => {
|
||||||
if (this.configStore.appearance?.dockHideOnBlur) {
|
if (this.configStore.appearance.dock !== 'off' && this.configStore.appearance?.dockHideOnBlur) {
|
||||||
this.hide()
|
this.hide()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user