diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-07 13:20:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 13:20:15 +0100 |
commit | 88aea70a098d91f1887e7c4e3218ce23c42e3b4f (patch) | |
tree | 62491141702f20b9f5e7527ea432a7bb1625069b /editor/editor_feature_profile.cpp | |
parent | bfb75d107c91fc36c07b917a12de715b6b107ef9 (diff) | |
parent | d9d12cd352b0244cc95b5d4d928753a26a0515ea (diff) | |
download | redot-engine-88aea70a098d91f1887e7c4e3218ce23c42e3b4f.tar.gz |
Merge pull request #57749 from timothyqiu/feature-class-props
Diffstat (limited to 'editor/editor_feature_profile.cpp')
-rw-r--r-- | editor/editor_feature_profile.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/editor/editor_feature_profile.cpp b/editor/editor_feature_profile.cpp index c8101ccaaf..1ab532eb32 100644 --- a/editor/editor_feature_profile.cpp +++ b/editor/editor_feature_profile.cpp @@ -592,7 +592,15 @@ void EditorFeatureProfileManager::_class_list_item_selected() { List<PropertyInfo> props; ClassDB::get_property_list(class_name, &props, true); - if (props.size() > 0) { + bool has_editor_props = false; + for (const PropertyInfo &E : props) { + if (E.usage & PROPERTY_USAGE_EDITOR) { + has_editor_props = true; + break; + } + } + + if (has_editor_props) { TreeItem *properties = property_list->create_item(root); properties->set_text(0, TTR("Class Properties:")); |