1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-26 12:43:50 +03:00

Fix: linting errors

This commit is contained in:
Evan / Fero 2023-07-14 12:15:53 -07:00
parent d2bdb55c6d
commit 539c213ef6
2 changed files with 3 additions and 3 deletions

View File

@ -398,14 +398,14 @@ export class Window {
}
// let color: string = theme.backgroundMore
let symbolColor: string = theme.foreground
const symbolColor: string = theme.foreground
this.window.setTitleBarOverlay(
{
// color: '#00000000',
symbolColor: symbolColor,
height: 32,
}
},
)
})

View File

@ -175,7 +175,7 @@ export default class ElectronModule {
private updateWindowControlsColor () {
// if windows and not using native frame, WCO does not exist, return.
if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame == "native") {
if (this.hostApp.platform === Platform.Windows && this.config.store.appearance.frame === 'native') {
return
}