mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Merge branch 'master' into SDA-2593b
This commit is contained in:
commit
cb1c21c768
@ -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 = {
|
||||
|
Loading…
Reference in New Issue
Block a user