Skip to content

Commit

Permalink
ByteProperty --> long display adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
atenfyr committed Apr 15, 2022
1 parent a5f2877 commit 3c044bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TableHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -384,14 +384,14 @@ private void AddRowsForArray(PropertyData[] arr)
case "ByteProperty":
var byteData = (BytePropertyData)thisPD;
row.Cells[2].Value = string.Empty;
row.Cells[3].Value = byteData.GetEnumBase(asset)?.Value == null ? FString.NullCase : byteData.GetEnumBase(asset)?.Value;
row.Cells[3].Value = byteData.GetEnumBase()?.Value.Value == null ? FString.NullCase : byteData.GetEnumBase()?.Value.Value;
if (byteData.ByteType == BytePropertyType.Byte)
{
row.Cells[4].Value = byteData.Value;
}
else
{
row.Cells[4].Value = byteData.GetEnumFull(asset)?.Value == null ? FString.NullCase : byteData.GetEnumFull(asset)?.Value;
row.Cells[4].Value = byteData.GetEnumFull()?.Value.Value == null ? FString.NullCase : byteData.GetEnumFull()?.Value.Value;
}
break;
case "StructProperty":
Expand Down

0 comments on commit 3c044bc

Please sign in to comment.