diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2020-01-22 22:37:56 +0200 |
---|---|---|
committer | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2020-01-22 22:37:56 +0200 |
commit | b4770c0a2781f203cd6a5eeaa92164ac56d2ca6a (patch) | |
tree | ff1200c28326034f50f40ccd38267597a95a9630 /editor/doc | |
parent | 91b0be18dcc3ba3b1ecd35e8a7e416883776cf7b (diff) |
Add settings from SceneTree in the documentation
Fixes #35439
Diffstat (limited to 'editor/doc')
-rw-r--r-- | editor/doc/doc_data.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/doc/doc_data.cpp b/editor/doc/doc_data.cpp index f9f8761247..26970446f5 100644 --- a/editor/doc/doc_data.cpp +++ b/editor/doc/doc_data.cpp @@ -233,6 +233,8 @@ void DocData::generate(bool p_basic_types) { List<StringName> classes; ClassDB::get_class_list(&classes); classes.sort_custom<StringName::AlphCompare>(); + // Move ProjectSettings, so that other classes can register properties there + classes.move_to_back(classes.find("ProjectSettings")); bool skip_setter_getter_methods = true; |