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 378bfd7 commit 2238a14Copy full SHA for 2238a14
src/vs/workbench/contrib/debug/browser/debugService.ts
@@ -181,7 +181,8 @@ export class DebugService implements IDebugService {
181
if (editorService.activeEditor === DisassemblyViewInput.instance) {
182
this.disassemblyViewFocus.set(true);
183
} else {
184
- this.disassemblyViewFocus.reset();
+ // This key can be initialized a tick after this event is fired
185
+ this.disassemblyViewFocus?.reset();
186
}
187
});
188
}));
0 commit comments