Selaa lähdekoodia

Expands folder items by default now

main
Eric Amodio 5 vuotta sitten
vanhempi
commit
1ef212cdfc
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. +1
    -2
      src/views/nodes/folderNode.ts

+ 1
- 2
src/views/nodes/folderNode.ts Näytä tiedosto

@ -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';

Ladataan…
Peruuta
Tallenna