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:
authorSybren A. Stüvel <sybren@blender.org>2021-10-28 11:31:29 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-10-28 12:24:27 +0300
commit289843119d96dd1a68ada25e4b357a5b8080f132 (patch)
tree9e38796dbf37f7a30460bd96a0ef31fc96d6ab6f /doc
parentbe7ce7cb4d7f4b28fffc626e6ac0b3588a5824e3 (diff)
Python doc generator: add missing `selected_ids` context key
Add the context key I introduced in rB03c0581c6ed to the Python API docs generator. No functional changes to Blender.
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 903136ea9f2..f8638b97270 100644
--- a/doc/python_api/sphinx_doc_gen.py
+++ b/doc/python_api/sphinx_doc_gen.py
@@ -1110,6 +1110,7 @@ context_type_map = {
"selected_editable_sequences": ("Sequence", True),
"selected_ids": ("ID", True),
"selected_files": ("FileSelectEntry", True),
+ "selected_ids": ("ID", True),
"selected_nla_strips": ("NlaStrip", True),
"selected_movieclip_tracks": ("MovieTrackingTrack", True),
"selected_nodes": ("Node", True),