Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-07-26 05:17:16 +0300
committerCampbell Barton <campbell@blender.org>2022-07-26 05:51:01 +0300
commit37ad72ab23785089a65a3291b66a4063d13b0cf3 (patch)
treef961c191af51b4d04a186553be15e9be0bfb425d /doc
parent4cf6524731c0856bfc6d6c0b7bcb2df0ad28b97a (diff)
Fix T99966: Python API docs fail to generate
The recent addition of "active_action" [0] required updating in the API docs type information. [0]: cd21022b78fe48c16ab11d04682bb92271873a9c
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/sphinx_doc_gen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/python_api/sphinx_doc_gen.py b/doc/python_api/sphinx_doc_gen.py
index f5e0369cede..240bec6fd30 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1131,6 +1131,7 @@ def pymodule2sphinx(basepath, module_name, module, title, module_all_extra):
# Changes In Blender will force errors here.
context_type_map = {
# context_member: (RNA type, is_collection)
+ "active_action": ("Action", False),
"active_annotation_layer": ("GPencilLayer", False),
"active_bone": ("EditBone", False),
"active_file": ("FileSelectEntry", False),