diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-02-28 09:34:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 09:34:50 +0100 |
commit | 41708eb8217bb146d60c1dc469f07d5850367cf3 (patch) | |
tree | 28b817848053d6a584736df46a3a975684f69203 | |
parent | 5efd6933847486aad232784d39da35ae5e746b86 (diff) | |
parent | 069bbd35df2f2ab1cbf23121b26774046f8ad183 (diff) |
Merge pull request #26335 from ericrybick/26247
Fix project_settings entry creation for global scripts.
-rw-r--r-- | editor/editor_sectioned_inspector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp index acc7637c0b..e7019e4ef6 100644 --- a/editor/editor_sectioned_inspector.cpp +++ b/editor/editor_sectioned_inspector.cpp @@ -80,7 +80,7 @@ class SectionedInspectorFilter : public Object { PropertyInfo pi = E->get(); int sp = pi.name.find("/"); - if (pi.name == "resource_path" || pi.name == "resource_name" || pi.name == "resource_local_to_scene" || pi.name.begins_with("script/")) //skip resource stuff + if (pi.name == "resource_path" || pi.name == "resource_name" || pi.name == "resource_local_to_scene" || pi.name.begins_with("script/") || pi.name.begins_with("_global_script")) //skip resource stuff continue; if (sp == -1) { @@ -233,7 +233,7 @@ void SectionedInspector::update_category_list() { else if (!(pi.usage & PROPERTY_USAGE_EDITOR)) continue; - if (pi.name.find(":") != -1 || pi.name == "script" || pi.name == "resource_name" || pi.name == "resource_path" || pi.name == "resource_local_to_scene") + if (pi.name.find(":") != -1 || pi.name == "script" || pi.name == "resource_name" || pi.name == "resource_path" || pi.name == "resource_local_to_scene" || pi.name.begins_with("_global_script")) continue; if (search_box && search_box->get_text() != String() && pi.name.findn(search_box->get_text()) == -1) |