Skip to content

Commit

Permalink
Explicitly set icon to task terminals.
Browse files Browse the repository at this point in the history
This forces to show the terminal name in the terminal tab list
otherwise icon is set depending on this._processManager.processState
which could happens after the list finished rendering
  • Loading branch information
jeanp413 committed Sep 14, 2021
1 parent f8b5740 commit 332c5fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extensions/gitpod-shared/src/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,8 @@ export async function registerTasks(context: GitpodExtensionContext, createTermi
const terminal = createTerminal(
{
name: taskTerminal.getTitle(),
pty
pty,
iconPath: new vscode.ThemeIcon('tools')
},
parentTerminal
);
Expand Down

0 comments on commit 332c5fa

Please sign in to comment.