Procházet zdrojové kódy

Expands folder items by default now

main
Eric Amodio před 5 roky
rodič
revize
1ef212cdfc
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. +1
    -2
      src/views/nodes/folderNode.ts

+ 1
- 2
src/views/nodes/folderNode.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit