Skip to content

Commit 3c044bc

Browse files
committed
ByteProperty --> long display adjustment
1 parent a5f2877 commit 3c044bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TableHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,14 +384,14 @@ private void AddRowsForArray(PropertyData[] arr)
384384
case "ByteProperty":
385385
var byteData = (BytePropertyData)thisPD;
386386
row.Cells[2].Value = string.Empty;
387-
row.Cells[3].Value = byteData.GetEnumBase(asset)?.Value == null ? FString.NullCase : byteData.GetEnumBase(asset)?.Value;
387+
row.Cells[3].Value = byteData.GetEnumBase()?.Value.Value == null ? FString.NullCase : byteData.GetEnumBase()?.Value.Value;
388388
if (byteData.ByteType == BytePropertyType.Byte)
389389
{
390390
row.Cells[4].Value = byteData.Value;
391391
}
392392
else
393393
{
394-
row.Cells[4].Value = byteData.GetEnumFull(asset)?.Value == null ? FString.NullCase : byteData.GetEnumFull(asset)?.Value;
394+
row.Cells[4].Value = byteData.GetEnumFull()?.Value.Value == null ? FString.NullCase : byteData.GetEnumFull()?.Value.Value;
395395
}
396396
break;
397397
case "StructProperty":

0 commit comments

Comments
 (0)