Merge pull request #60363 from Rindbee/fix-incorrect-property-label-with-feature-tags

This commit is contained in:
Hugo Locurcio 2022-04-19 15:47:18 +02:00 committed by GitHub
commit 1274e54bf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2682,7 +2682,7 @@ void EditorInspector::update_tree() {
{
const int dot = name_override.find(".");
if (dot != -1) {
feature_tag = name_override.right(dot);
feature_tag = name_override.substr(dot);
name_override = name_override.substr(0, dot);
}
}