mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-26 15:14:06 +02:00
Debugger: Watches, do not evaluate watches that are collapsed.
This commit is contained in:
parent
64c277e14c
commit
b2c9e115f8
@ -1214,6 +1214,9 @@ begin
|
||||
if (ThreadsMonitor = nil) or (CallStackMonitor = nil) then exit;
|
||||
if GetStackframe < 0 then exit; // TODO need dedicated validity property
|
||||
|
||||
if not tvWatches.FullyVisible[VNode] then
|
||||
exit;
|
||||
|
||||
if wdsfUpdating in FStateFlags then begin
|
||||
if FCurrentWatchInUpDateItem <> AWatch then // The watch got data while we requested it, that is fine
|
||||
FUpdateAllNeeded := True;
|
||||
|
Loading…
Reference in New Issue
Block a user