Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
Fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
enginelesscc committed Oct 13, 2022
1 parent 0727427 commit adc6f77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vs/platform/window/common/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export function useWindowControlsOverlay(configurationService: IConfigurationSer
return configuredUseWindowControlsOverlay;
}

return false; // disable by default
return true; // ! vivya: ~~disable~~ enable by default
}

export interface IPath<T = IEditorOptions> extends IPathData<T> {
Expand Down
4 changes: 2 additions & 2 deletions src/vs/workbench/electron-sandbox/desktop.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ import product from 'vs/platform/product/common/product';
'window.dialogStyle': {
'type': 'string',
'enum': ['native', 'custom'],
'default': 'native',
'default': 'custom',
'scope': ConfigurationScope.APPLICATION,
'description': localize('dialogStyle', "Adjust the appearance of dialog windows.")
},
Expand Down Expand Up @@ -243,7 +243,7 @@ import product from 'vs/platform/product/common/product';
'window.experimental.useSandbox': { // TODO@bpasero remove me once sandbox is final
type: 'boolean',
description: localize('experimentalUseSandbox', "Experimental: When enabled, the window will have sandbox mode enabled via Electron API."),
default: typeof product.quality === 'string' && product.quality !== 'stable', // disabled by default in stable for now
default: true, // disabled by default in stable for now
'scope': ConfigurationScope.APPLICATION,
ignoreSync: true
},
Expand Down

0 comments on commit adc6f77

Please sign in to comment.