Skip to content

Commit b15f21b

Browse files
committed
1 parent 0456ff9 commit b15f21b

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/vs/workbench/contrib/debug/browser/callStackView.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,10 @@ export class CallStackView extends ViewPane {
355355
const sessionListeners: IDisposable[] = [];
356356
sessionListeners.push(s.onDidChangeName(() => this.tree.rerender(s)));
357357
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+
}
358362
}));
359363
}
360364

0 commit comments

Comments
 (0)