From 41bb88358765f4479605f5973ef6dba101feaf13 Mon Sep 17 00:00:00 2001 From: Vincent Fugnitto Date: Tue, 25 Jun 2019 06:52:29 -0400 Subject: [PATCH] Update 'running tasks' statusbar icon Now that `octicons` are supported in the statusbar thanks to https://github.com/theia-ide/theia/pull/5416, the icon for `running tasks...` is now updated to match that of its vscode counterpart. Signed-off-by: Vincent Fugnitto --- packages/task/src/browser/task-frontend-contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/task/src/browser/task-frontend-contribution.ts b/packages/task/src/browser/task-frontend-contribution.ts index 76bd5b3281003..ae4fe3eb082e8 100644 --- a/packages/task/src/browser/task-frontend-contribution.ts +++ b/packages/task/src/browser/task-frontend-contribution.ts @@ -161,7 +161,7 @@ export class TaskFrontendContribution implements CommandContribution, MenuContri const items = await this.taskService.getRunningTasks(); if (!!items.length) { this.statusBar.setElement(id, { - text: `$(wrench) ${items.length}`, + text: `$(tools) ${items.length}`, tooltip: 'Show Running Tasks', alignment: StatusBarAlignment.LEFT, priority: 2,