mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-31 04:35:14 +01:00
debug: do not add column to a breakpoint after user edited the file
fixes #21950
This commit is contained in:
@@ -202,7 +202,7 @@ export class DebugEditorModelManager implements IWorkbenchContribution {
|
||||
enabled: breakpoint.enabled,
|
||||
condition: breakpoint.condition,
|
||||
hitCondition: breakpoint.hitCondition,
|
||||
column: decorationRange.startColumn
|
||||
column: breakpoint.column ? decorationRange.startColumn : undefined
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user