diff options
author | kobewi <kobewi4e@gmail.com> | 2022-06-06 15:22:57 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-06-07 14:14:03 +0200 |
commit | 83014f8901e04a1be7d4b8fecab1771f76125f12 (patch) | |
tree | b262a23e2c617270483dbca353de22721ae5b09a /editor | |
parent | 4d2ecde3e22e2503715b0cec612dd8b767dce77a (diff) |
Add GLOBAL_DEF_INTERNAL to hide specific settings
Diffstat (limited to 'editor')
-rw-r--r-- | editor/editor_sectioned_inspector.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/editor_sectioned_inspector.cpp b/editor/editor_sectioned_inspector.cpp index b7073665a8..801a1a4641 100644 --- a/editor/editor_sectioned_inspector.cpp +++ b/editor/editor_sectioned_inspector.cpp @@ -250,11 +250,6 @@ void SectionedInspector::update_category_list() { continue; } - // Filter out unnecessary ProjectSettings sections, as they already have their dedicated tabs. - if (pi.name.begins_with("autoload") || pi.name.begins_with("editor_plugins") || pi.name.begins_with("shader_globals")) { - continue; - } - if (!filter.is_empty() && !_property_path_matches(pi.name, filter, name_style)) { continue; } |