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