From 78e0b2093c38a69633cfa69a728082859263ad47 Mon Sep 17 00:00:00 2001 From: Amiram Wingarten Date: Wed, 26 Jun 2019 10:59:15 +0300 Subject: [PATCH] always show debug icon on first start Align with vscode behavior. See discussion: https://spectrum.chat/theia/dev/debug-icon-appearance~a321c3d1-11f4-45ec-a5ed-2d5e1ba2b714 Signed-off-by: Amiram Wingarten --- .../src/browser/debug-frontend-application-contribution.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/debug/src/browser/debug-frontend-application-contribution.ts b/packages/debug/src/browser/debug-frontend-application-contribution.ts index e8700528d7a7c..b84e8f9180163 100644 --- a/packages/debug/src/browser/debug-frontend-application-contribution.ts +++ b/packages/debug/src/browser/debug-frontend-application-contribution.ts @@ -368,12 +368,7 @@ export class DebugFrontendApplicationContribution extends AbstractViewContributi } async initializeLayout(): Promise { - ((async () => { - const supported = await this.configurations.supported; - if (supported.next().value) { - await this.openView(); - } - })()); + await this.openView(); } protected firstSessionStart = true;