mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge from vscode e0762af258c0b20320ed03f3871a41967acc4421 (#7404)
* Merge from vscode e0762af258c0b20320ed03f3871a41967acc4421 * readd svgs
This commit is contained in:
@@ -233,11 +233,6 @@ import { isMacintosh, isWindows, isLinux, isWeb, isNative } from 'vs/base/common
|
||||
'description': nls.localize('workbench.enableExperiments', "Fetches experiments to run from a Microsoft online service."),
|
||||
'default': true,
|
||||
'tags': ['usesOnlineServices']
|
||||
},
|
||||
'workbench.octiconsUpdate.enabled': {
|
||||
'type': 'boolean',
|
||||
'default': true,
|
||||
'description': nls.localize('workbench.octiconsUpdate.enabled', "Controls the visibility of the new Octicons style in the workbench.")
|
||||
}
|
||||
}
|
||||
});
|
||||
@@ -286,14 +281,15 @@ import { isMacintosh, isWindows, isLinux, isWeb, isNative } from 'vs/base/common
|
||||
},
|
||||
'window.menuBarVisibility': {
|
||||
'type': 'string',
|
||||
'enum': ['default', 'visible', 'toggle', 'hidden'],
|
||||
'enum': ['default', 'visible', 'toggle', 'hidden', 'compact'],
|
||||
'enumDescriptions': [
|
||||
nls.localize('window.menuBarVisibility.default', "Menu is only hidden in full screen mode."),
|
||||
nls.localize('window.menuBarVisibility.visible', "Menu is always visible even in full screen mode."),
|
||||
nls.localize('window.menuBarVisibility.toggle', "Menu is hidden but can be displayed via Alt key."),
|
||||
nls.localize('window.menuBarVisibility.hidden', "Menu is always hidden.")
|
||||
nls.localize('window.menuBarVisibility.hidden', "Menu is always hidden."),
|
||||
nls.localize('window.menuBarVisibility.compact', "Menu is displayed as a compact button in the sidebar.")
|
||||
],
|
||||
'default': 'default',
|
||||
'default': isWeb ? 'compact' : 'default',
|
||||
'scope': ConfigurationScope.APPLICATION,
|
||||
'description': nls.localize('menuBarVisibility', "Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. By default, the menu bar will be visible, unless the window is full screen."),
|
||||
'included': isWindows || isLinux || isWeb
|
||||
|
||||
Reference in New Issue
Block a user