Skip to content

Commit

Permalink
fixes #177444 (#180704)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno authored Apr 24, 2023
1 parent 8df6888 commit 3c05482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/ui/tree/abstractTree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ class Trait<T> {
} else {
const insertedNode = insertedNodesMap.get(id);

if (insertedNode) {
if (insertedNode && insertedNode.visible) {
nodes.push(insertedNode);
}
}
Expand Down

0 comments on commit 3c05482

Please sign in to comment.