@@ -17,6 +17,7 @@ import { fillInActions, ContextAwareMenuItemActionItem } from 'vs/platform/actio
1717import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey' ;
1818import { ICustomViewsService , ITreeViewer } from 'vs/workbench/common/views' ;
1919import { IViewletViewOptions , IViewOptions , ViewsViewletPanel } from 'vs/workbench/browser/parts/views/viewsViewlet' ;
20+ import { IConfigurationService } from 'vs/platform/configuration/common/configuration' ;
2021
2122export class CustomTreeViewPanel extends ViewsViewletPanel {
2223
@@ -29,9 +30,10 @@ export class CustomTreeViewPanel extends ViewsViewletPanel {
2930 @IKeybindingService keybindingService : IKeybindingService ,
3031 @IContextMenuService contextMenuService : IContextMenuService ,
3132 @IInstantiationService private instantiationService : IInstantiationService ,
33+ @IConfigurationService configurationService : IConfigurationService ,
3234 @ICustomViewsService customViewsService : ICustomViewsService ,
3335 ) {
34- super ( { ...( options as IViewOptions ) , ariaHeaderLabel : options . name } , keybindingService , contextMenuService ) ;
36+ super ( { ...( options as IViewOptions ) , ariaHeaderLabel : options . name } , keybindingService , contextMenuService , configurationService ) ;
3537 this . treeViewer = customViewsService . getTreeViewer ( this . id ) ;
3638 this . menus = this . instantiationService . createInstance ( Menus , this . id ) ;
3739 this . menus . onDidChangeTitle ( ( ) => this . updateActions ( ) , this , this . disposables ) ;
0 commit comments