From 7499a9f3c565f4fbe5205e30c8664e5a5a11ae94 Mon Sep 17 00:00:00 2001 From: isidor Date: Tue, 6 Dec 2016 17:03:26 +0100 Subject: [PATCH] start-debug title needs to be up to date --- src/vs/workbench/parts/debug/browser/debugActionItems.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/parts/debug/browser/debugActionItems.ts b/src/vs/workbench/parts/debug/browser/debugActionItems.ts index d26c2c0843c..3530a8d95d2 100644 --- a/src/vs/workbench/parts/debug/browser/debugActionItems.ts +++ b/src/vs/workbench/parts/debug/browser/debugActionItems.ts @@ -37,6 +37,7 @@ export class StartDebugActionItem extends EventEmitter implements IActionItem { private registerListeners(): void { this.toDispose.push(this.configurationService.onDidUpdateConfiguration(e => { this.updateOptions(); + this.nameContainer.textContent = this.debugService.getViewModel().selectedConfigurationName; })); this.toDispose.push(this.selectBox.onDidSelect(configurationName => { this.debugService.getViewModel().setSelectedConfigurationName(configurationName); -- GitLab