Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit b681453

Browse files
committed
Fix issue with float struct check
1 parent 2310f2f commit b681453

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/UI/InteractiveValues/InteractiveFloatStruct.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ public static bool IsTypeSupported(Type type)
6161
if (!type.IsValueType)
6262
return false;
6363

64+
if (string.IsNullOrEmpty(type.AssemblyQualifiedName))
65+
return false;
66+
6467
if (_typeSupportCache.TryGetValue(type.AssemblyQualifiedName, out bool ret))
6568
return ret;
6669

0 commit comments

Comments
 (0)