Remove blank icon as option for terminal icon

Fixes #211220
This commit is contained in:
Daniel Imms 2024-04-24 02:42:37 -07:00
parent e46e2ab21a
commit 22d8353b96
No known key found for this signature in database
GPG key ID: E5CF412B63651C69

View file

@ -18,6 +18,9 @@ const icons = new Lazy<IconContribution[]>(() => {
const iconDefinitions = getIconRegistry().getIcons();
const includedChars = new Set<string>();
const dedupedIcons = iconDefinitions.filter(e => {
if (e.id === 'blank') {
return false;
}
if (!('fontCharacter' in e.defaults)) {
return false;
}