Fix issue with setTitleBarOverlay method on non-win32 platforms.

This commit is contained in:
Andrii Zhovtiak
2023-08-09 19:15:46 +03:00
parent 2cfc64911b
commit 79cabb6eda

View File

@@ -392,14 +392,15 @@ export class Window {
return
}
const symbolColor: string = theme.foreground
this.window.setTitleBarOverlay(
{
symbolColor: symbolColor,
height: 32,
},
)
if (process.platform === 'win32') {
const symbolColor: string = theme.foreground
this.window.setTitleBarOverlay(
{
symbolColor: symbolColor,
height: 32,
},
)
}
})
ipcMain.on('window-set-title', (event, title) => {