Skip to content

Commit

Permalink
make custom titlebar default on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sbatten committed Aug 28, 2018
1 parent 1f7ce42 commit 43676d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/electron-browser/main.contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ configurationRegistry.registerConfiguration({
'window.titleBarStyle': {
'type': 'string',
'enum': ['native', 'custom'],
'default': isMacintosh ? 'custom' : 'native',
'default': isLinux ? 'native' : 'custom',
'scope': ConfigurationScope.APPLICATION,
'description': nls.localize('titleBarStyle', "Adjust the appearance of the window title bar. Changes require a full restart to apply.")
},
Expand Down

0 comments on commit 43676d0

Please sign in to comment.