Merge pull request #32729 from Calinou/inspector-remove-string-conversion

Remove redundant `camelcase_to_underscore()` call in EditorInspector
This commit is contained in:
Rémi Verschelde 2019-10-11 07:21:57 +02:00 committed by GitHub
commit 4067028894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1566,11 +1566,11 @@ void EditorInspector::update_tree() {
if (dot != -1) {
String ov = name.right(dot);
name = name.substr(0, dot);
name = name.camelcase_to_underscore().capitalize();
name = name.capitalize();
name += ov;
} else {
name = name.camelcase_to_underscore().capitalize();
name = name.capitalize();
}
}