From 67261dc97fa649c5cec62b948af4e2ce7860f047 Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Tue, 23 Feb 2021 22:44:25 +0100 Subject: [PATCH] fix typo in sorting; fixes #117375 --- .../workbench/contrib/debug/browser/debugEditorContribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/debugEditorContribution.ts b/src/vs/workbench/contrib/debug/browser/debugEditorContribution.ts index da98cba0f0d..87da68d855c 100644 --- a/src/vs/workbench/contrib/debug/browser/debugEditorContribution.ts +++ b/src/vs/workbench/contrib/debug/browser/debugEditorContribution.ts @@ -658,7 +658,7 @@ export class DebugEditorContribution implements IDebugEditorContribution { lineSegments = []; lineDecorations.set(line, lineSegments); } - lineSegments.push(new InlineSegment(range.startColumn, text)); + lineSegments.push(new InlineSegment(iv.range.startColumn, text)); } } }