mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
IdeDebugger: fix display enum watches with out of range value.
This commit is contained in:
parent
c4d26f3da9
commit
f874fee43d
@ -864,6 +864,12 @@ function TWatchResultPrinter.PrintWatchValueEx(AResValue: TWatchResultData;
|
||||
s := '';
|
||||
if Resolved.Enum.MainFormat <> vdfEnumOrd then begin
|
||||
Result := AResValue.AsString;
|
||||
if Result = '' then begin
|
||||
Result := AResValue.TypeName;
|
||||
if Result <> ''
|
||||
then Result := Result + '(' + IntToStr(AResValue.AsInt64) + ')'
|
||||
else Result := IntToStr(AResValue.AsInt64);
|
||||
end;
|
||||
s := ' = ';
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user