Skip to content

Commit

Permalink
vscode: support theme icons in pinned language status item hovers, mi…
Browse files Browse the repository at this point in the history
…crosoft/vscode#129037

Commit: 691a5e4479d8f2ff7f977487d44217309b6e6933
  • Loading branch information
Johannes Rieken authored and sourcegraph-bot committed Dec 20, 2021
1 parent d1a37ff commit a93cc51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ class EditorStatusContribution implements IWorkbenchContribution {
text: item.busy ? `${item.label}\u00A0\u00A0$(sync~spin)` : item.label,
ariaLabel: item.accessibilityInfo?.label ?? item.label,
role: item.accessibilityInfo?.role,
tooltip: item.command?.tooltip || new MarkdownString(item.detail, true),
tooltip: item.command?.tooltip || new MarkdownString(item.detail, { isTrusted: true, supportThemeIcons: true }),
color,
backgroundColor,
command: item.command
Expand Down

0 comments on commit a93cc51

Please sign in to comment.