1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00

fixed focus loss on new windows

This commit is contained in:
Eugene Pankov 2020-05-26 17:04:39 +02:00
parent 922f1fbade
commit d08413aeab
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -101,6 +101,7 @@ export class Window {
this.window.show()
}
this.window.focus()
this.window.moveTop()
}
})
@ -152,6 +153,7 @@ export class Window {
show (): void {
this.window.show()
this.window.moveTop()
}
focus (): void {