Przeglądaj źródła

Expands folder items by default now

main
Eric Amodio 5 lat temu
rodzic
commit
1ef212cdfc
1 zmienionych plików z 1 dodań i 2 usunięć
  1. +1
    -2
      src/views/nodes/folderNode.ts

+ 1
- 2
src/views/nodes/folderNode.ts Wyświetl plik

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

Ładowanie…
Anuluj
Zapisz