Ver a proveniência

Expands folder items by default now

main
Eric Amodio há 5 anos
ascendente
cometimento
1ef212cdfc
1 ficheiros alterados com 1 adições e 2 eliminações
  1. +1
    -2
      src/views/nodes/folderNode.ts

+ 1
- 2
src/views/nodes/folderNode.ts Ver ficheiro

@ -78,8 +78,7 @@ export class FolderNode extends ViewNode {
}
getTreeItem(): TreeItem {
// TODO: Change this to expanded once https://github.com/Microsoft/vscode/issues/30918 is fixed
const item = new TreeItem(this.label, TreeItemCollapsibleState.Collapsed);
const item = new TreeItem(this.label, TreeItemCollapsibleState.Expanded);
item.contextValue = ResourceType.Folder;
if (this.containsWorkingFiles) {
item.contextValue += '+working';

Carregando…
Cancelar
Guardar