diff options
author | Thomas Herzog <karroffel@users.noreply.github.com> | 2017-07-10 22:56:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-10 22:56:12 +0200 |
commit | aa52f7c8d413c475e32f98a4b6f19afffc55bdbd (patch) | |
tree | 2b19c67d0d410a4da8afe7dcea048fca0c7d1863 | |
parent | 93405830802d32795194bbf505bd2cb6ea8ac2e5 (diff) | |
parent | 68fdcc4f83da695ffa48106401935d01f61b70ab (diff) |
Merge pull request #9572 from Noshyaar/rlts
Fix duplicated resource_local_to_scene
-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 + "/")) { |