Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/browser/actions/layoutActions.ts')
-rw-r--r--src/vs/workbench/browser/actions/layoutActions.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vs/workbench/browser/actions/layoutActions.ts b/src/vs/workbench/browser/actions/layoutActions.ts
index 2f3c7c31c6a..75fb709ed6c 100644
--- a/src/vs/workbench/browser/actions/layoutActions.ts
+++ b/src/vs/workbench/browser/actions/layoutActions.ts
@@ -678,7 +678,7 @@ export class MoveFocusedViewAction extends Action {
.map(viewletId => {
return {
id: viewletId,
- label: this.viewDescriptorService.getViewContainerById(viewletId)!.title
+ label: this.viewDescriptorService.getViewContainerModel(this.viewDescriptorService.getViewContainerById(viewletId)!)!.title
};
}));
@@ -699,7 +699,7 @@ export class MoveFocusedViewAction extends Action {
.map(panel => {
return {
id: panel.id,
- label: this.viewDescriptorService.getViewContainerById(panel.id)!.title
+ label: this.viewDescriptorService.getViewContainerModel(this.viewDescriptorService.getViewContainerById(panel.id)!)!.title
};
}));