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 846d9c0 commit e5faad7Copy full SHA for e5faad7
src/views/live-watch/live-watch.ts
@@ -101,9 +101,8 @@ export class LiveWatchTreeDataProvider implements vscode.TreeDataProvider<LiveWa
101
}
102
103
private async handleOnDidChangeActiveDebugSession(session: GDBTargetDebugSession | undefined): Promise<void> {
104
- if (this._activeSession?.session.id === session?.session.id) {
105
- await this.refresh();
106
- }
+ this._activeSession = session;
+ await this.refresh();
107
108
109
private async handleOnWillStartSession(session: GDBTargetDebugSession): Promise<void> {
0 commit comments