debug: do not add column to a breakpoint after user edited the file

fixes #21950
This commit is contained in:
isidor
2017-03-08 11:10:16 +01:00
parent 1f3a6e0583
commit f6f74eab1b
@@ -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
});
}
}