1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-23 18:44:20 +03:00

prevent window controls flickering

This commit is contained in:
Eugene Pankov 2021-12-22 00:04:01 +01:00
parent 39786e023e
commit c7589acc87
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -44,6 +44,7 @@ export class Window {
private configStore: any private configStore: any
private touchBarControl: any private touchBarControl: any
private isFluentVibrancy = false private isFluentVibrancy = false
private dockHidden = false
get visible$ (): Observable<boolean> { return this.visible } get visible$ (): Observable<boolean> { return this.visible }
get closed$ (): Observable<void> { return this.closed } get closed$ (): Observable<void> { return this.closed }
@ -248,15 +249,31 @@ export class Window {
private async enableDockedWindowStyles (enabled: boolean) { private async enableDockedWindowStyles (enabled: boolean) {
if (process.platform === 'darwin') { if (process.platform === 'darwin') {
if (enabled) { if (enabled) {
app.dock.hide() if (!this.dockHidden) {
app.dock.hide()
this.dockHidden = true
}
this.window.setAlwaysOnTop(true, 'screen-saver', 1) this.window.setAlwaysOnTop(true, 'screen-saver', 1)
this.window.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true }) if (!this.window.isVisibleOnAllWorkspaces()) {
this.window.setFullScreenable(false) this.window.setVisibleOnAllWorkspaces(true, { visibleOnFullScreen: true })
}
if (this.window.fullScreenable) {
this.window.setFullScreenable(false)
}
} else { } else {
await app.dock.show() if (this.dockHidden) {
this.window.setAlwaysOnTop(false) await app.dock.show()
this.window.setVisibleOnAllWorkspaces(false) this.dockHidden = false
this.window.setFullScreenable(true) }
if (this.window.isAlwaysOnTop()) {
this.window.setAlwaysOnTop(false)
}
if (this.window.isVisibleOnAllWorkspaces()) {
this.window.setVisibleOnAllWorkspaces(false)
}
if (!this.window.fullScreenable) {
this.window.setFullScreenable(true)
}
} }
} }
} }