Skip to content

Commit

Permalink
fixes #92126
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Apr 2, 2020
1 parent fcc8326 commit aef342f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/vs/workbench/contrib/debug/browser/welcomeView.ts
Expand Up @@ -75,6 +75,11 @@ export class WelcomeView extends ViewPane {
};
this._register(editorService.onDidActiveEditorChange(setContextKey));
this._register(this.debugService.getConfigurationManager().onDidRegisterDebugger(setContextKey));
this._register(this.onDidChangeBodyVisibility(visible => {
if (visible) {
setContextKey();
}
}));
setContextKey();

const debugKeybinding = this.keybindingService.lookupKeybinding(StartAction.ID);
Expand Down

0 comments on commit aef342f

Please sign in to comment.