diff --git a/Source/Engine/UI/UIControl.cs b/Source/Engine/UI/UIControl.cs index 8fd4f8f72..2b239f982 100644 --- a/Source/Engine/UI/UIControl.cs +++ b/Source/Engine/UI/UIControl.cs @@ -296,6 +296,9 @@ namespace FlaxEngine if (_control != null) { Json.JsonSerializer.Deserialize(_control, json); + + // Synchronize actor with control location + OnControlLocationChanged(_control); } }