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 469ee93 commit 86b8ed4Copy full SHA for 86b8ed4
src/vs/workbench/contrib/files/browser/views/explorerView.ts
@@ -761,6 +761,11 @@ export class ExplorerView extends ViewPane implements IExplorerView {
761
}
762
763
try {
764
+ // We must expand the nest to have it be populated in the tree
765
+ if (item.nestedParent) {
766
+ await this.tree.expand(item.nestedParent);
767
+ }
768
+
769
if (reveal === true && this.tree.getRelativeTop(item) === null) {
770
// Don't scroll to the item if it's already visible, or if set not to.
771
this.tree.reveal(item, 0.5);
0 commit comments