mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-23 03:48:01 +00:00
Merge branch 'master' into Add-dock-hide-on-blur-option
This commit is contained in:
@@ -199,8 +199,13 @@ export class Window {
|
||||
this.window.focus()
|
||||
})
|
||||
} else {
|
||||
// docked, visible
|
||||
this.window.hide()
|
||||
if (this.configStore.appearance?.dockAlwaysOnTop) {
|
||||
// docked, visible, on top
|
||||
this.window.hide()
|
||||
} else {
|
||||
// docked, visible, not on top
|
||||
this.window.focus()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user