Skip to content

Commit

Permalink
debug: do not look at breakpoint column when finding breakpoint for w…
Browse files Browse the repository at this point in the history
…idget

fixes #46898
  • Loading branch information
isidorn committed Apr 12, 2018
1 parent 2e9910f commit 7693169
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -67,7 +67,7 @@ export class BreakpointWidget extends ZoneWidget implements IPrivateBreakopintWi

this.toDispose = [];
const uri = this.editor.getModel().uri;
this.breakpoint = this.debugService.getModel().getBreakpoints().filter(bp => bp.lineNumber === this.lineNumber && bp.column === this.column && bp.uri.toString() === uri.toString()).pop();
this.breakpoint = this.debugService.getModel().getBreakpoints().filter(bp => bp.lineNumber === this.lineNumber && bp.uri.toString() === uri.toString()).pop();

if (this.context === undefined) {
if (this.breakpoint && !this.breakpoint.condition && !this.breakpoint.hitCondition && this.breakpoint.logMessage) {
Expand Down

0 comments on commit 7693169

Please sign in to comment.