Debugger: reset breakpoint state (unknown, valid, invalid) after debugger stops. Issue #39505

This commit is contained in:
Martin 2022-02-07 21:51:52 +01:00
parent a930449457
commit d962ac2a85

View File

@ -3454,6 +3454,8 @@ end;
procedure TDBGBreakPoint.DoStateChange(const AOldState: TDBGState);
begin
if Debugger.State <> dsStop then Exit;
SetValid(vsUnknown);
if not (AOldState in [dsIdle, dsNone]) then Exit;
BeginUpdate;