@@ -24,7 +24,6 @@ import { IProductService } from 'vs/platform/product/common/productService';
2424interface IConfiguration extends IWindowsConfiguration {
2525 update : { mode : string ; } ;
2626 telemetry : { enableCrashReporter : boolean } ;
27- workbench : { list : { horizontalScrolling : boolean } } ;
2827 debug : { console : { wordWrap : boolean } } ;
2928 editor : { accessibilitySupport : 'on' | 'off' | 'auto' } ;
3029}
@@ -37,7 +36,6 @@ export class SettingsChangeRelauncher extends Disposable implements IWorkbenchCo
3736 private clickThroughInactive : boolean | undefined ;
3837 private updateMode : string | undefined ;
3938 private enableCrashReporter : boolean | undefined ;
40- private treeHorizontalScrolling : boolean | undefined ;
4139 private debugConsoleWordWrap : boolean | undefined ;
4240 private accessibilitySupport : 'on' | 'off' | 'auto' | undefined ;
4341
@@ -56,12 +54,6 @@ export class SettingsChangeRelauncher extends Disposable implements IWorkbenchCo
5654 private onConfigurationChange ( config : IConfiguration , notify : boolean ) : void {
5755 let changed = false ;
5856
59- // Tree horizontal scrolling support
60- if ( typeof config . workbench ?. list ?. horizontalScrolling === 'boolean' && config . workbench . list . horizontalScrolling !== this . treeHorizontalScrolling ) {
61- this . treeHorizontalScrolling = config . workbench . list . horizontalScrolling ;
62- changed = true ;
63- }
64-
6557 // Debug console word wrap
6658 if ( typeof config . debug ?. console . wordWrap === 'boolean' && config . debug . console . wordWrap !== this . debugConsoleWordWrap ) {
6759 this . debugConsoleWordWrap = config . debug . console . wordWrap ;
0 commit comments