We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8ca45 commit c7c9025Copy full SHA for c7c9025
src/features/views/treeViewItems.ts
@@ -31,8 +31,10 @@ export class EnvManagerTreeItem implements EnvTreeItem {
31
constructor(public readonly manager: InternalEnvironmentManager) {
32
const item = new TreeItem(manager.displayName, TreeItemCollapsibleState.Collapsed);
33
item.contextValue = this.getContextValue();
34
- item.description = manager.description;
35
- item.tooltip = manager.tooltip;
+ // Descriptions were a bit too visually noisy
+ // https://github.com/microsoft/vscode-python-environments/issues/167
36
+ item.description = undefined;
37
+ item.tooltip = manager.tooltip ?? manager.description;
38
item.iconPath = manager.iconPath;
39
this.treeItem = item;
40
}
0 commit comments