Skip to content

Commit ea3fa2e

Browse files
committed
Fix compilation
1 parent ea78776 commit ea3fa2e

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/vs/workbench/browser/parts/views/customViewPanel.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { fillInActions, ContextAwareMenuItemActionItem } from 'vs/platform/actio
1717
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
1818
import { ICustomViewsService, ITreeViewer } from 'vs/workbench/common/views';
1919
import { IViewletViewOptions, IViewOptions, ViewsViewletPanel } from 'vs/workbench/browser/parts/views/viewsViewlet';
20+
import { IConfigurationService } from 'vs/platform/configuration/common/configuration';
2021

2122
export 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

Comments
 (0)