Merge branch 'master' into SDA-2593b

This commit is contained in:
mattias-symphony
2020-11-04 14:07:38 +01:00
committed by GitHub

View File

@@ -125,7 +125,10 @@ export class WindowHandler {
const { disableThrottling } = config.getCloudConfigFields(['disableThrottling']) as any;
this.windows = {};
this.contextIsolation = this.globalConfig.contextIsolation || false;
this.contextIsolation = true;
if (this.globalConfig.contextIsolation !== undefined) {
this.contextIsolation = this.globalConfig.contextIsolation;
}
this.backgroundThrottling = (customFlags.disableThrottling !== CloudConfigDataTypes.ENABLED || disableThrottling !== CloudConfigDataTypes.ENABLED);
this.isCustomTitleBar = isWindowsOS && this.config.isCustomTitleBar === CloudConfigDataTypes.ENABLED;
this.windowOpts = {