Skip to content

Commit d84506e

Browse files
committed
Reference codiconsLibrary
1 parent 22d8353 commit d84506e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vs/workbench/contrib/terminal/browser/terminalIconPicker.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import { Dimension, getActiveDocument } from 'vs/base/browser/dom';
77
import { HoverPosition } from 'vs/base/browser/ui/hover/hoverWidget';
8+
import { codiconsLibrary } from 'vs/base/common/codiconsLibrary';
89
import { Lazy } from 'vs/base/common/lazy';
910
import { Disposable } from 'vs/base/common/lifecycle';
1011
import type { ThemeIcon } from 'vs/base/common/themables';
@@ -18,7 +19,7 @@ const icons = new Lazy<IconContribution[]>(() => {
1819
const iconDefinitions = getIconRegistry().getIcons();
1920
const includedChars = new Set<string>();
2021
const dedupedIcons = iconDefinitions.filter(e => {
21-
if (e.id === 'blank') {
22+
if (e.id === codiconsLibrary.blank.id) {
2223
return false;
2324
}
2425
if (!('fontCharacter' in e.defaults)) {

0 commit comments

Comments
 (0)