mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
IdeDebugger: fix expanding array (locals dlg). Take low-bound into account. Issue #41073
This commit is contained in:
parent
c8f30b1459
commit
5d8a93d6e7
@ -7554,7 +7554,7 @@ begin
|
||||
TryStrToInt64(DisplayName, i) and
|
||||
(i >= ParentVal.FValue.LowBound) and (i < ParentVal.FValue.Count)
|
||||
then begin
|
||||
ParentVal.FValue.SetSelectedIndex(i);
|
||||
ParentVal.FValue.SetSelectedIndex(i-ParentVal.FValue.LowBound);
|
||||
// TODO: mark this as a copy / or don't store it, then no copy is needed
|
||||
FValue := ParentVal.FValue.SelectedEntry.CreateCopy;
|
||||
Result := True;
|
||||
|
Loading…
Reference in New Issue
Block a user