Skip to content

Commit 6f53005

Browse files
committed
Explicitly set icon to task terminals.
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
1 parent 37f56d4 commit 6f53005

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extensions/gitpod-shared/src/features.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -723,7 +723,8 @@ export async function registerTasks(context: GitpodExtensionContext, createTermi
723723
const terminal = createTerminal(
724724
{
725725
name: taskTerminal.getTitle(),
726-
pty
726+
pty,
727+
iconPath: new vscode.ThemeIcon('tools')
727728
},
728729
parentTerminal
729730
);

0 commit comments

Comments
 (0)