File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/vs/workbench/contrib/terminal/browser Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import { Dimension , getActiveDocument } from 'vs/base/browser/dom' ;
7
7
import { HoverPosition } from 'vs/base/browser/ui/hover/hoverWidget' ;
8
+ import { codiconsLibrary } from 'vs/base/common/codiconsLibrary' ;
8
9
import { Lazy } from 'vs/base/common/lazy' ;
9
10
import { Disposable } from 'vs/base/common/lifecycle' ;
10
11
import type { ThemeIcon } from 'vs/base/common/themables' ;
@@ -18,6 +19,9 @@ const icons = new Lazy<IconContribution[]>(() => {
18
19
const iconDefinitions = getIconRegistry ( ) . getIcons ( ) ;
19
20
const includedChars = new Set < string > ( ) ;
20
21
const dedupedIcons = iconDefinitions . filter ( e => {
22
+ if ( e . id === codiconsLibrary . blank . id ) {
23
+ return false ;
24
+ }
21
25
if ( ! ( 'fontCharacter' in e . defaults ) ) {
22
26
return false ;
23
27
}
You can’t perform that action at this time.
0 commit comments