mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Allow users to make the scrollbars in the title area larger (#92720)
* Added 2 settings for the scrollbar height of breadcrumbs and tabs * Added 2 settings for the scrollbar height of breadcrumbs and tabs * Moved from pixel based scrollbar settings to a categorical sizing setting, default and large * some cleanup and 💄 * Use updateOptions to update the horizontal scrollbar size Co-authored-by: Benjamin Pasero <benjpas@microsoft.com> Co-authored-by: Alex Dima <alexdima@microsoft.com>
This commit is contained in:
@@ -17,6 +17,16 @@ import { workbenchConfigurationNodeBase } from 'vs/workbench/common/configuratio
|
||||
registry.registerConfiguration({
|
||||
...workbenchConfigurationNodeBase,
|
||||
'properties': {
|
||||
'workbench.editor.titleScrollbarSizing': {
|
||||
type: 'string',
|
||||
enum: ['default', 'large'],
|
||||
enumDescriptions: [
|
||||
nls.localize('workbench.editor.titleScrollbarSizing.default', "The default size."),
|
||||
nls.localize('workbench.editor.titleScrollbarSizing.large', "Increases the size, so it can be grabed more easily with the mouse")
|
||||
],
|
||||
description: nls.localize('tabScrollbarHeight', "Controls the height of the scrollbars used for tabs and breadcrumbs in the editor title area."),
|
||||
default: 'default',
|
||||
},
|
||||
'workbench.editor.showTabs': {
|
||||
'type': 'boolean',
|
||||
'description': nls.localize('showEditorTabs', "Controls whether opened editors should show in tabs or not."),
|
||||
|
||||
Reference in New Issue
Block a user