Hi, found that UGS incorrectly reads the “Weight” setting from its ConfigObject for its column headers in UpdateColumnSettings(). The two issues that I found are that:
- The column weight is a float, but ConfigObject has no floating point overload for its GetValue() functions. As a result, its reading the column weight as an integer.
- The default value for the read is “_minColumnWidths[column.Index]”, but that should most likely be “_columnWeights[column.Index]”.
Cheers,
Peter