diff --git a/src/vs/workbench/parts/output/browser/outputPanel.ts b/src/vs/workbench/parts/output/browser/outputPanel.ts index 5b9efa885abfbded27ad0f4dbea73f4a51c14a51..4540ab81078ebb42e83139c09eec7b60f487a333 100644 --- a/src/vs/workbench/parts/output/browser/outputPanel.ts +++ b/src/vs/workbench/parts/output/browser/outputPanel.ts @@ -28,6 +28,7 @@ import { IWorkbenchEditorService } from 'vs/workbench/services/editor/common/edi import { IThemeService } from 'vs/workbench/services/themes/common/themeService'; import { IUntitledEditorService } from 'vs/workbench/services/untitled/common/untitledEditorService'; import { ITextFileService } from 'vs/workbench/services/textfile/common/textfiles'; +import { IEditorGroupService } from 'vs/workbench/services/group/common/groupService'; export class OutputPanel extends StringEditor { @@ -48,10 +49,11 @@ export class OutputPanel extends StringEditor { @IOutputService private outputService: IOutputService, @IUntitledEditorService untitledEditorService: IUntitledEditorService, @IContextKeyService private contextKeyService: IContextKeyService, + @IEditorGroupService editorGroupService: IEditorGroupService, @ITextFileService textFileService: ITextFileService ) { super(telemetryService, instantiationService, contextService, storageService, - messageService, configurationService, eventService, editorService, themeService, untitledEditorService, textFileService); + messageService, configurationService, eventService, editorService, themeService, untitledEditorService, editorGroupService, textFileService); this.scopedInstantiationService = instantiationService; this.toDispose = []; }