diff --git a/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs b/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs index 6537c0c59..31a429dd1 100644 --- a/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs @@ -93,7 +93,8 @@ namespace FlaxEditor.CustomEditors.Dedicated // Add info box if (IsSingleObject && Values[0] is RigidBody && Editor.IsPlayMode) { - _infoLabel = layout.Label(string.Empty).Label; + var group = layout.Group("Info"); + _infoLabel = group.Label(string.Empty).Label; _infoLabel.AutoHeight = true; } }