diff --git a/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs b/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs index b050e60c3..18bc1878d 100644 --- a/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs +++ b/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs @@ -51,6 +51,9 @@ namespace FlaxEditor.CustomEditors.GUI /// The name. public PropertyNameLabel(string name) { + // Format name with capital first letter + name = name[0].ToString().ToUpper() + name.Substring(1); + Text = name; HorizontalAlignment = TextAlignment.Near; VerticalAlignment = TextAlignment.Center;