Skip to content

Commit 1d18c1c

Browse files
Merge pull request #423 from gjsjohnmurray/fix-422
fix #422 add icons to first-level subfolders of ObjectScript Explorer
2 parents 774a50a + 9030c6c commit 1d18c1c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/explorer/models/workspaceNode.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export class WorkspaceNode extends NodeBase {
3939
"dataRootNode:classesRootNode",
4040
"CLS",
4141
this.options,
42-
false
43-
//new vscode.ThemeIcon("symbol-class")
42+
false,
43+
new vscode.ThemeIcon("symbol-class")
4444
);
4545
children.push(node);
4646

@@ -50,8 +50,8 @@ export class WorkspaceNode extends NodeBase {
5050
"dataRootNode:routinesRootNode",
5151
"RTN",
5252
this.options,
53-
false
54-
//new vscode.ThemeIcon("note")
53+
false,
54+
new vscode.ThemeIcon("note")
5555
);
5656
children.push(node);
5757

@@ -61,8 +61,8 @@ export class WorkspaceNode extends NodeBase {
6161
"dataRootNode:routinesRootNode",
6262
"INC",
6363
this.options,
64-
false
65-
//new vscode.ThemeIcon("file-symlink-file")
64+
false,
65+
new vscode.ThemeIcon("file-symlink-file")
6666
);
6767
children.push(node);
6868

@@ -72,8 +72,8 @@ export class WorkspaceNode extends NodeBase {
7272
"dataRootNode:cspRootNode",
7373
"CSP",
7474
this.options,
75-
false
76-
//new vscode.ThemeIcon("symbol-file")
75+
false,
76+
new vscode.ThemeIcon("symbol-file")
7777
);
7878
children.push(node);
7979

@@ -83,8 +83,8 @@ export class WorkspaceNode extends NodeBase {
8383
"dataRootNode:otherRootNode",
8484
"OTH",
8585
this.options,
86-
false
87-
//new vscode.ThemeIcon("symbol-misc")
86+
false,
87+
new vscode.ThemeIcon("symbol-misc")
8888
);
8989
children.push(node);
9090

0 commit comments

Comments
 (0)