This commit is contained in:
CortexCore
2024-08-10 09:09:31 +08:00
parent 5038fe33d1
commit 68a998ff96
11 changed files with 187 additions and 4 deletions

View File

@@ -67,7 +67,14 @@ namespace BITKit.UX
}
else
{
fieldInfo.SetValue(self, ve);
try
{
fieldInfo.SetValue(self, ve);
}
catch (Exception e)
{
BIT4Log.Warning<UXUtils>(field!.Name);
}
}
}