You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 19:11:41 +00:00
Fixes incorrect display of property labels with feature tags
Closes #60352
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user