diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-04-20 19:06:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-20 19:06:02 +0200 |
| commit | 4e4fcbd79352b96210929eab8f6cd1670af0462a (patch) | |
| tree | 780315e0e4a6e9d8d6aac5b00308faffc91dd5c8 /editor/plugins/script_text_editor.cpp | |
| parent | 9cf48b3e995b40bba174f062d0d3f4249e8cdbf0 (diff) | |
| parent | 2cd952bd846678c5e16d47ed0986c74c6b997e73 (diff) | |
| download | redot-engine-4e4fcbd79352b96210929eab8f6cd1670af0462a.tar.gz | |
Merge pull request #38045 from akien-mga/fix-subgroup-property
Fix handling of PROPERTY_USAGE_SUBGROUP in DocData and editor
Diffstat (limited to 'editor/plugins/script_text_editor.cpp')
| -rw-r--r-- | editor/plugins/script_text_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/script_text_editor.cpp b/editor/plugins/script_text_editor.cpp index 4b8383e1e5..1a77eeb9de 100644 --- a/editor/plugins/script_text_editor.cpp +++ b/editor/plugins/script_text_editor.cpp @@ -172,7 +172,7 @@ void ScriptTextEditor::_update_member_keywords() { for (List<PropertyInfo>::Element *E = plist.front(); E; E = E->next()) { String name = E->get().name; - if (E->get().usage & PROPERTY_USAGE_CATEGORY || E->get().usage & PROPERTY_USAGE_GROUP) + if (E->get().usage & PROPERTY_USAGE_CATEGORY || E->get().usage & PROPERTY_USAGE_GROUP || E->get().usage & PROPERTY_USAGE_SUBGROUP) continue; if (name.find("/") != -1) continue; |
