Skip to content

Commit

Permalink
fixes #14615
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Oct 28, 2016
1 parent 3148c92 commit 9225658
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/debug/browser/debugActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export class ReapplyBreakpointsAction extends AbstractDebugAction {
protected isEnabled(state: debug.State): boolean {
const model = this.debugService.getModel();
return super.isEnabled(state) && state !== debug.State.Disabled && state !== debug.State.Inactive &&
(model.getFunctionBreakpoints().length + model.getBreakpoints().length > 0);
(model.getFunctionBreakpoints().length + model.getBreakpoints().length + model.getExceptionBreakpoints().length > 0);
}
}

Expand Down

0 comments on commit 9225658

Please # to comment.