Merge branch 'master' into Add-dock-hide-on-blur-option

This commit is contained in:
Eugene
2020-04-21 09:38:28 +02:00
committed by GitHub
12 changed files with 76 additions and 31 deletions

View File

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