提交 48631d68 编写于 作者: I isidor

Breakpoints/Call Stack: clicking on entry with column info jump to that column

fixes #27598
上级 eade0061
......@@ -383,7 +383,7 @@ export class StackFrame implements IStackFrame {
description: this.source.origin,
options: {
preserveFocus,
selection: { startLineNumber: this.range.startLineNumber, startColumn: 1 },
selection: this.range,
revealIfVisible: true,
revealInCenterIfOutsideViewport: true,
pinned: !preserveFocus
......
......@@ -1270,7 +1270,7 @@ export class BreakpointsController extends BaseDebugController {
endColumn: breakpoint.endColumn
} : {
startLineNumber: breakpoint.lineNumber,
startColumn: 1
startColumn: breakpoint.column || 1
};
this.editorService.openEditor({
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册