We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0456ff9 commit b15f21bCopy full SHA for b15f21b
1 file changed
src/vs/workbench/contrib/debug/browser/callStackView.ts
@@ -355,6 +355,10 @@ export class CallStackView extends ViewPane {
355
const sessionListeners: IDisposable[] = [];
356
sessionListeners.push(s.onDidChangeName(() => this.tree.rerender(s)));
357
sessionListeners.push(s.onDidEndAdapter(() => dispose(sessionListeners)));
358
+ if (s.parentSession) {
359
+ // A session we already expanded has a new child session, allow to expand it again.
360
+ this.autoExpandedSessions.delete(s.parentSession);
361
+ }
362
}));
363
}
364
0 commit comments