Skip to content

Commit 22d8353

Browse files
committed
Remove blank icon as option for terminal icon
Fixes microsoft#211220
1 parent e46e2ab commit 22d8353

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ const icons = new Lazy<IconContribution[]>(() => {
1818
const iconDefinitions = getIconRegistry().getIcons();
1919
const includedChars = new Set<string>();
2020
const dedupedIcons = iconDefinitions.filter(e => {
21+
if (e.id === 'blank') {
22+
return false;
23+
}
2124
if (!('fontCharacter' in e.defaults)) {
2225
return false;
2326
}

0 commit comments

Comments
 (0)