LazDebuggerFp: Fixed/Workaround an endless loop with auto-continue breakpoints. The new async-stack-eval was not taken into account.

git-svn-id: trunk@62319 -
This commit is contained in:
martin 2019-12-03 01:55:29 +00:00
parent dc42d0fa38
commit b206664b05

View File

@ -1859,8 +1859,11 @@ begin
if &continue then begin
// wait for any watches for Snapshots
while FWatchAsyncQueued do
while FWatchAsyncQueued do begin
if TFPCallStackSupplier(CallStack).FReqList.Count > 0 then
Application.Idle(False);
ProcessASyncWatches(0);
end;
end;
end;