mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2025-04-09 04:41:33 +02:00
fix: icons showing red in some old versions of vscode
This commit is contained in:
parent
c5e5d2f46d
commit
7942fc4de8
1 changed files with 3 additions and 3 deletions
|
@ -96,9 +96,9 @@ class CodempTreeItem extends vscode.TreeItem {
|
|||
else if (type === Type.ClientContainer) this.iconPath = new vscode.ThemeIcon("broadcast");
|
||||
else if (type === Type.ClientInfo) this.iconPath = new vscode.ThemeIcon("chip");
|
||||
else if (type === Type.CurrentWorkspace) this.iconPath = new vscode.ThemeIcon("debug-breakpoint-data");
|
||||
else if (type === Type.Workspace) this.iconPath = new vscode.ThemeIcon("debug-breakpoint-data-unverified");
|
||||
else if (type === Type.Buffer) this.iconPath = new vscode.ThemeIcon(opts.active ? "debug-breakpoint-log" : "debug-breakpoint-log-unverified");
|
||||
else if (type === Type.User) this.iconPath = new vscode.ThemeIcon("debug-breakpoint-disabled");
|
||||
else if (type === Type.Workspace) this.iconPath = new vscode.ThemeIcon("debug-breakpoint-data-disabled");
|
||||
else if (type === Type.Buffer) this.iconPath = new vscode.ThemeIcon(opts.active ? "debug-breakpoint-log" : "debug-breakpoint-log-disabled");
|
||||
else if (type === Type.User) this.iconPath = new vscode.ThemeIcon("debug-breakpoint");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue