Skip to content

Commit 77d5746

Browse files
committed
fix build
1 parent 32c2232 commit 77d5746

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

src/vs/workbench/contrib/terminal/browser/terminalView.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ import { ViewPane, IViewPaneOptions } from 'vs/workbench/browser/parts/views/vie
2828
import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
2929
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey';
3030
import { IViewDescriptorService } from 'vs/workbench/common/views';
31+
import { IOpenerService } from 'vs/platform/opener/common/opener';
3132

3233
const FIND_FOCUS_CLASS = 'find-focused';
3334

@@ -53,9 +54,10 @@ export class TerminalViewPane extends ViewPane {
5354
@IThemeService protected readonly themeService: IThemeService,
5455
@ITelemetryService telemetryService: ITelemetryService,
5556
@INotificationService private readonly _notificationService: INotificationService,
56-
@IStorageService storageService: IStorageService
57+
@IStorageService storageService: IStorageService,
58+
@IOpenerService openerService: IOpenerService,
5759
) {
58-
super(options, keybindingService, _contextMenuService, configurationService, contextKeyService, viewDescriptorService, _instantiationService);
60+
super(options, keybindingService, _contextMenuService, configurationService, contextKeyService, viewDescriptorService, _instantiationService, openerService, themeService);
5961
}
6062

6163
protected renderBody(container: HTMLElement): void {

0 commit comments

Comments
 (0)