File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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" :
You can’t perform that action at this time.
0 commit comments