Skip to content

Commit

Permalink
fixes #79884
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Aug 28, 2019
1 parent e337b82 commit b05051e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/browser/variablesView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export class VariablesView extends ViewletPanel {
const dataid = response.dataId;
if (dataid) {
actions.push(new Separator());
actions.push(new Action('debug.addDataBreakpoint', nls.localize('setDataBreakpoint', "Set Data Breakpoint"), undefined, true, () => {
actions.push(new Action('debug.breakWhenValueChanges', nls.localize('breakWhenValueChanges', "Break When Value Changes"), undefined, true, () => {
return this.debugService.addDataBreakpoint(response.description, dataid, !!response.canPersist);
}));
}
Expand Down

0 comments on commit b05051e

Please sign in to comment.