From 1ba7f5d6cf18b1860f98489f7e579358687d6479 Mon Sep 17 00:00:00 2001 From: isidor Date: Wed, 26 Jul 2017 16:15:30 +0200 Subject: [PATCH] update explorer title on change workspace name fixes #30991 --- src/vs/workbench/parts/files/browser/explorerViewlet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/files/browser/explorerViewlet.ts b/src/vs/workbench/parts/files/browser/explorerViewlet.ts index e6587b55e87..4c690b9b222 100644 --- a/src/vs/workbench/parts/files/browser/explorerViewlet.ts +++ b/src/vs/workbench/parts/files/browser/explorerViewlet.ts @@ -66,7 +66,7 @@ export class ExplorerViewlet extends ComposedViewsViewlet { this.registerViews(); this.onConfigurationUpdated(); this._register(this.configurationService.onDidUpdateConfiguration(e => this.onConfigurationUpdated())); - this._register(this.contextService.onDidChangeWorkspaceRoots(e => this.updateTitleArea())); + this._register(this.contextService.onDidChangeWorkspaceName(e => this.updateTitleArea())); } public create(parent: Builder): TPromise { -- GitLab