Skip to content

Commit

Permalink
always show debug icon on first start
Browse files Browse the repository at this point in the history
Align with vscode behavior.
See discussion: https://spectrum.chat/theia/dev/debug-icon-appearance~a321c3d1-11f4-45ec-a5ed-2d5e1ba2b714

Signed-off-by: Amiram Wingarten <[email protected]>
  • Loading branch information
amiramw authored and akosyakov committed Sep 5, 2019
1 parent 8054da5 commit 78e0b20
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,12 +368,7 @@ export class DebugFrontendApplicationContribution extends AbstractViewContributi
}

async initializeLayout(): Promise<void> {
((async () => {
const supported = await this.configurations.supported;
if (supported.next().value) {
await this.openView();
}
})());
await this.openView();
}

protected firstSessionStart = true;
Expand Down

0 comments on commit 78e0b20

Please sign in to comment.