IdeDebugger: fix display enum watches with out of range value.

This commit is contained in:
Martin 2024-04-26 11:54:27 +02:00
parent c4d26f3da9
commit f874fee43d

View File

@ -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;