We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a0091f commit be402f0Copy full SHA for be402f0
1 file changed
src/vs/base/browser/ui/grid/gridview.ts
@@ -300,7 +300,7 @@ class BranchNode implements ISplitView, IDisposable {
300
}
301
302
private onDidChildrenChange(): void {
303
- const onDidChildrenChange = Event.any(...this.children.map(c => c.onDidChange));
+ const onDidChildrenChange = Event.map(Event.any(...this.children.map(c => c.onDidChange)), () => undefined);
304
this.childrenChangeDisposable.dispose();
305
this.childrenChangeDisposable = onDidChildrenChange(this._onDidChange.fire, this._onDidChange);
306
0 commit comments