Fix Visject Surface search to check nested surfaces (such as State Machine graphs)

This commit is contained in:
Wojtek Figat
2024-10-28 20:32:17 +01:00
parent f88eeeb313
commit 41a0ccb218
4 changed files with 71 additions and 27 deletions

View File

@@ -87,7 +87,7 @@ namespace FlaxEditor.Surface
Title = TitleValue;
Color = ColorValue;
var size = SizeValue;
if (Surface.GridSnappingEnabled)
if (Surface != null && Surface.GridSnappingEnabled)
size = Surface.SnapToGrid(size, true);
Size = size;