Always capitalize the first letter of a property name label

This commit is contained in:
Chandler Cox
2022-12-29 15:11:07 -06:00
parent e7cf10aea8
commit f52e76fe30

View File

@@ -51,6 +51,9 @@ namespace FlaxEditor.CustomEditors.GUI
/// <param name="name">The name.</param>
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;