mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 20:47:58 +02:00
IdeDebugger: fix slow display of nested watch, due to recursive check O(2^n) Issue #40944
This commit is contained in:
parent
045c0c6596
commit
f1cd54dbdd
@ -6710,8 +6710,7 @@ begin
|
||||
if Result then
|
||||
exit;
|
||||
|
||||
Result := (GetAnyValidParentWatchValue(AThreadId, AStackFrame) <> nil) and
|
||||
FParentWatch.HasAllValidParents(AThreadId, AStackFrame);
|
||||
Result := (GetAnyValidParentWatchValue(AThreadId, AStackFrame) <> nil);
|
||||
end;
|
||||
|
||||
procedure TIdeWatch.DoEnableChange;
|
||||
|
Loading…
Reference in New Issue
Block a user