mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-22 05:08:16 +02:00
* Reset puse wait state when stopped (tip from paul)
git-svn-id: trunk@18826 -
This commit is contained in:
parent
9d9c9448c5
commit
fa88fa1f61
@ -849,7 +849,10 @@ end;
|
|||||||
procedure TGDBMIDebugger.DoState(const OldState: TDBGState);
|
procedure TGDBMIDebugger.DoState(const OldState: TDBGState);
|
||||||
begin
|
begin
|
||||||
if State in [dsStop, dsError]
|
if State in [dsStop, dsError]
|
||||||
then FAsmCache.Clear;
|
then begin
|
||||||
|
FAsmCache.Clear;
|
||||||
|
FPauseWaitState := pwsNone;
|
||||||
|
end;
|
||||||
|
|
||||||
inherited DoState(OldState);
|
inherited DoState(OldState);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user