Skip to content

Commit

Permalink
exclude action breakpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-s committed May 1, 2021
1 parent 5042d66 commit 9a4b334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ForceStep/BreakpointManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private void SuspendBreakpoints(string statusCode)

foreach (EnvDTE.Breakpoint bp in dte.Debugger.Breakpoints)
{
if (bp.Enabled)
if (bp.Enabled && ((EnvDTE80.Breakpoint2)bp).BreakWhenHit)
{
bp.Tag = statusCode;
bp.Enabled = false;
Expand Down

0 comments on commit 9a4b334

Please sign in to comment.