Skip to content

Commit

Permalink
support theme icons in pinned language status item hovers, #129037
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Dec 20, 2021
1 parent bd8c42a commit 691a5e4
Showing 1 changed file with 1 addition and 1 deletion.
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 691a5e4

Please sign in to comment.