mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-17 23:49:34 +02:00
Debugger: Fix evaluate dialog. Respect length of array. Broken since bca093c6ec
"Debugger: redesign Inspect and Evaluate-Modify windows"
This commit is contained in:
parent
7a4e58e4d3
commit
715d70dc38
@ -846,7 +846,9 @@ begin
|
||||
AWatch.EvaluateFlags := Opts;
|
||||
AWatch.DbgBackendConverter := Conv;
|
||||
AWatch.Enabled := True;
|
||||
AWatch.RepeatCount := ArrayNavigationBar1.PageSize;
|
||||
AWatch.RepeatCount := 0;
|
||||
if ArrayNavigationBar1.Visible then
|
||||
AWatch.RepeatCount := ArrayNavigationBar1.PageSize;
|
||||
FInspectWatches.EndUpdate;
|
||||
FCurrentWatchValue := AWatch.Values[tid, idx];
|
||||
if FCurrentWatchValue <> nil then begin
|
||||
|
Loading…
Reference in New Issue
Block a user