Fix properties names formatting for UI with 2 character words

Fixes #229
This commit is contained in:
Wojtek Figat
2021-02-14 17:12:29 +01:00
parent 17a738d2ce
commit a947dc0cc3

View File

@@ -71,7 +71,7 @@ namespace FlaxEditor.CustomEditors
// Space before word starting with uppercase letter
if (char.IsUpper(c) && i > 0)
{
if (i + 2 < length && !char.IsUpper(name[i + 1]) && !char.IsUpper(name[i + 2]))
if (i + 1 < length && !char.IsUpper(name[i + 1]))
sb.Append(' ');
}
// Space instead of underscore