:typescript: - Do not inject custom title bar for mac

This commit is contained in:
Kiran Niranjan 2019-01-16 12:10:21 +05:30
parent 9861818322
commit 8fabaa5c56

View File

@ -214,8 +214,9 @@ export class WindowHandler {
this.url = this.mainWindow.webContents.getURL();
// Injects custom title bar css into the webContents
// only for Window and if it is enabled
await injectStyles(this.mainWindow, this.isCustomTitleBarAndWindowOS);
this.mainWindow.webContents.send('initiate-custom-title-bar');
if (this.isCustomTitleBarAndWindowOS) this.mainWindow.webContents.send('initiate-custom-title-bar');
this.mainWindow.webContents.send('page-load', {
isWindowsOS,
locale: i18n.getLocale(),