some ui cleanups (minor)

This commit is contained in:
Sinai
2021-01-22 21:56:00 +11:00
parent f13068bf01
commit d1f4f74d32
5 changed files with 152 additions and 138 deletions

View File

@ -229,13 +229,9 @@ namespace UnityExplorer.Inspectors.Reflection
string toString;
if (m_toStringFormatMethod != null)
{
toString = (string)m_toStringFormatMethod.Invoke(Value, new object[] { "F3" });
}
else
{
toString = (string)m_toStringMethod.Invoke(Value, new object[0]);
}
var fullnametemp = valueType.ToString();
if (fullnametemp.StartsWith("Il2CppSystem"))