diff options
author | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-09 13:26:10 +0700 |
---|---|---|
committer | Poommetee Ketson <poommetee@protonmail.com> | 2017-07-09 13:26:10 +0700 |
commit | 68fdcc4f83da695ffa48106401935d01f61b70ab (patch) | |
tree | e8698e541c04028bb607592cf914ae1be32cbe70 /editor | |
parent | 0bf88e4b38ff6665cc3cc69c2d8a4723481b8586 (diff) |
Fix duplicated resource_local_to_scene
Diffstat (limited to 'editor')
-rw-r--r-- | editor/property_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp index ad9b3607e9..8a9fd2cde5 100644 --- a/editor/property_editor.cpp +++ b/editor/property_editor.cpp @@ -4462,7 +4462,7 @@ class SectionedPropertyEditorFilter : public Object { continue; if (sp == -1) { - pi.name = "Global/" + pi.name; + pi.name = "global/" + pi.name; } if (pi.name.begins_with(section + "/")) { |